simple.html 666 B

12345678910111213141516171819202122232425262728
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Simple example</title>
  6. </head>
  7. <body>
  8. <button onclick="generate()">Generate pdf</button>
  9. <script src="libs/jspdf.min.js"></script>
  10. <script src="../dist/jspdf.plugin.autotable.src.js"></script>
  11. <script>
  12. function generate() {
  13. var columns = ["ID", "Name", "Age", "City"];
  14. var data = [
  15. [1, "Jonatan", 25, "Gothenburg"],
  16. [2, "Simon", 23, "Gothenburg"],
  17. [3, "Hanna", 21, "Stockholm"]
  18. ];
  19. var doc = new jsPDF('p', 'pt');
  20. doc.autoTable(columns, data);
  21. doc.save("table.pdf");
  22. }
  23. </script>
  24. </body>
  25. </html>