Friday, May 10, 2024
 Popular · Latest · Hot · Upcoming
96
rated 0 times [  102] [ 6]  / answers: 1 / hits: 46137  / 8 Years ago, wed, june 15, 2016, 12:00:00

Hello Im trying to save my html page to PDF and I have this code:



 <div id=content>
<h3>Hello, this is a H3 tag</h3>

<p>a pararaph</p>
</div>
<div id=editor></div>
<button id=cmd>Generate PDF</button>

<script>
var doc = new jsPDF();
var specialElementHandlers = {
'#editor': function (element, renderer) {
return true;
}
};

$('#cmd').click(function () {
doc.fromHTML($('#content').html(), 15, 15, {
'width': 170,
'elementHandlers': specialElementHandlers
});
doc.save('sample-file.pdf');
});

// This code is collected but useful, click below to jsfiddle link.
</script>


I uploaded to jsFiddle and works... but when I try it in my browser doesnt works and I get the error doc.fromHTML is not a function. I have the jQuery and jsPDF references exactly like jsFiddle.



Example Code


More From » jquery

 Answers
7

Add External libraries - Jquery and Jspdf js files with script tags



<script src=https://code.jquery.com/jquery-1.12.3.min.js></script>


<script src=https://cdnjs.cloudflare.com/ajax/libs/jspdf/0.9.0rc1/jspdf.min.js></script>


Codepen - http://codepen.io/nagasai/pen/JKKNMK


[#61753] Tuesday, June 14, 2016, 8 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
hakeemabramh

Total Points: 234
Total Questions: 109
Total Answers: 109

Location: Romania
Member since Mon, Jun 6, 2022
2 Years ago
;