jsPDF is an open-source library written in JavaScript, used for generating PDF documents. Do not use with the [pdf.js] tag as that is a different library.
jsPDF is an open-source library written in JavaScript, used for generating PDF documents. Originally written by Daniel Dotsenko from Willow Systems Corporation, later contributed by many other contributors.
The current version is 2.4.0.
Live editor exapmle
var doc = new jsPDF();
doc.text(20, 20, 'Hello world.');
doc.save('Test.pdf');
Links