Guest User

Untitled

a guest
Jul 23rd, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. $(function() {
  2. var specialElementHandlers = {
  3. '#editor': function(element, renderer) {
  4. return true;
  5. }
  6. };
  7.  
  8. $('#printButton').click(function() {
  9. var doc = new jsPDF();
  10. doc.fromHTML($('#main-container').html(), 15, 15, {
  11. 'width': 170,
  12. 'elementHandlers': specialElementHandlers
  13. });
  14. doc.output("dataurlnewwindow");
  15.  
  16. });
  17. });
  18.  
  19. Add these scripts in the code
  20.  
  21. <script src="js/pdf.js"></script>
  22. <script src="js/pdf.worker.js"></script>
Add Comment
Please, Sign In to add comment