What is "jspdf"
Jspdf is a library of open source written in Javascript, used to generate PDF documents. Originally written by Daniel Dotsenko of Willow Systems Corporation, later contributed by many other contributors.
Example of use:
var doc = new jsPDF();
doc.text(20, 20, 'Olá mundo!');
doc.save('teste.pdf');
Links: