I am using jspdf for generating my pdf report. I have multiple tables which show the principle, but when I am generating the pdf, table\'s rows are splitting between different p
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();
y = 0 // Restart height position
}
doc.text(x, y, "value");
Source: MrRio/jsPDF/issues/101