Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.21 KB | None | 0 0
  1. <script>
  2. function printDiv() {
  3. window.frames["print_frame"].document.body.innerHTML = document.getElementById("printableTable").innerHTML;
  4. window.frames["print_frame"].window.focus();
  5. window.frames["print_frame"].window.print();
  6. }
  7. </script>
  8. <script>
  9. @media print {
  10. * {
  11. display: none;
  12. }
  13. #printableTable {
  14. display: block;
  15. }
  16. }
  17. </script>
  18. <div>
  19. <h1><b><center>This is a test page for printing</center></b><hr color=#00cc00 width=95%></h1>
  20. <button class="Button Button--outline" onclick="printDiv()">Print7</button>
  21. <p> content content content </p>
  22. <div id="printableTable">
  23. <style>
  24. table, th, td {
  25. border: 1px solid black;
  26. }
  27. </style>
  28. <table>
  29. <thead>
  30. <tr>
  31. <td>Thing</td>
  32. <td>Chairs</td>
  33. </tr>
  34. </thead>
  35. <tbody>
  36. <tr>
  37. <td>1</td>
  38. <td>blue</td>
  39. </tr>
  40. <tr>
  41. <td>2</td>
  42. <td>green</td>
  43. </tr>
  44. </tbody>
  45. </table>
  46. </div>
  47. <p> content content content </p>
  48. <p> content content content </p>
  49. <iframe name="print_frame" width="0" height="0" frameborder="0" src="about:blank"></iframe>
  50.  
  51.  
  52. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement