how to use addHTML function in jsPDF

First, you have to include jsPDF library, and also html2canvas or rasterizeHTML. Then, just create a jsPDF object and save to pdf the entire ‘body’ tag (or whatever): You can find more examples on the jsPDF website: http://mrrio.github.io/jsPDF/

Generate pdf from HTML in div using Javascript

jsPDF is able to use plugins. In order to enable it to print HTML, you have to include certain plugins and therefore have to do the following: Go to https://github.com/MrRio/jsPDF and download the latest Version. Include the following Scripts in your project: jspdf.js jspdf.plugin.from_html.js jspdf.plugin.split_text_to_size.js jspdf.plugin.standard_fonts_metrics.js If you want to ignore certain elements, you have to mark them … Read more

How to properly use jsPDF library

you can use pdf from html as follows, Step 1: Add the following script to the header or download locally Step 2: Add HTML script to execute jsPDF code Customize this to pass the identifier or just change #content to be the identifier you need. Step 3: Add your body content