Guest User

Untitled

a guest
Dec 13th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. <!-- Print the current page -->
  2.  
  3. <!DOCTYPE html>
  4. <html>
  5. <body>
  6.  
  7. <p> Click the button and print the current page </p>
  8.  
  9. <button onclick="PrintIt()">Print</button>
  10.  
  11. <script>
  12. function PrintIt() {
  13. window.print();
  14. }
  15. </script>
  16.  
  17. </body>
  18. </html>
Add Comment
Please, Sign In to add comment