Advertisement
Guest User

Untitled

a guest
Aug 21st, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width">
  6. <title>JS Bin</title>
  7.  
  8. <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
  9. <script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/1.3.2/jspdf.min.js"></script>
  10. <script>
  11. $(function(){
  12.  
  13. function getPDF(){
  14. var doc = new jsPDF();
  15. doc.fromHTML($("#pdf").get(0), 20, 20);
  16. doc.save('pdf_livro.pdf');
  17. }
  18. $('#save').click(function(){
  19. getPDF();
  20. })
  21. })
  22. </script>
  23. <style>
  24. p{
  25. color:red;
  26. }
  27. </style>
  28. </head>
  29. <body>
  30. <div id="pdf">
  31.  
  32. <p>oi aqui é um html em vermelho, faz de conta que isso é o livro</p>
  33. </div>
  34. <a href="#" id="save">save</a>
  35. </body>
  36. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement