We Recommend

Pro JavaScript Techniques Pro JavaScript Techniques
Pro JavaScript Techniques is the ultimate JavaScript book for the modern web developer. It provides everything you need to know about modern JavaScript, and shows what JavaScript can do for your web sites. This book doesn't waste any time looking at things you already know, like basic syntax and structures.


Posted By

Dydric on 03/10/08


Tagged

print


Versions (?)


Print page


Published in: JavaScript 


  1. <html>
  2. <head>
  3. <title>Print</title>
  4.  
  5. <script language="Javascript1.2">
  6. <!--
  7. function printdepagina() {
  8. window.print();
  9. }
  10. //-->
  11. </script>
  12.  
  13. </head>
  14.  
  15. <body onload="printdepagina()">
  16. Print this page
  17. </body>
  18. </html>

Report this snippet 

You need to login to post a comment.