Metjhs23
01-19-2003, 05:25 PM
Can anyone give me a print page link (not button) script? Is this a java only thing too, or are there html ways to do it?
|
Click to See Complete Forum and Search --> : Print page script Metjhs23 01-19-2003, 05:25 PM Can anyone give me a print page link (not button) script? Is this a java only thing too, or are there html ways to do it? swon 01-19-2003, 06:25 PM <script language=javascript> window.print(); </script> prints the page or by a button: <button onClick="window.print()">print page</button> Charles 01-19-2003, 09:27 PM <script type="text/javascript"> <!-- if (window.print) { document.write('<a href="#">Print Me</a>'); document.links[document.links.length-1].onclick = function () {window.print()} } // --> </script> webdeveloper.com
Copyright Internet.com Inc., All Rights Reserved. |