Home > Software engineering >  jsPDF - consistent margin
jsPDF - consistent margin

Time:02-10

I have the following - the PDF comes out fine, but it runs all the way to the edge on the right side - how can I get the same margin on the right as I do on the left?

jQuery(".button, #button").click(function () {
  var options = {};
  var pdf = new jsPDF("p", "pt", "a4");
  pdf.addHTML(
    jQuery(".wpforms-entry-preview-table_compact"),
    15,
    15,
    options,
    function () {
      pdf.save("document.pdf");
    }
  );
});

CodePudding user response:

  •  Tags:  
  • Related