jsPDF multi page PDF with HTML renderer

I have the same working issue. Searching in MrRio github I found this: https://github.com/MrRio/jsPDF/issues/101 Basically, you have to check the actual page size always before adding new content doc = new jsPdf(); … pageHeight= doc.internal.pageSize.height; // Before adding new content y = 500 // Height position of new content if (y >= pageHeight) { doc.addPage(); … Read more