| | |||||
| ||||||||
| CODE This forum is for posting code snippets and example scripts that aren't quite tutorials, but could be useful for others. You may post code snippets and/or completed scripts that you've written and want to share here. |
![]() |
| | LinkBack | Thread Tools |
| | THREAD STARTER #1 (permalink) |
| NamePros Member Join Date: Aug 2003
Posts: 36
![]() | Javascript - Print Page Button ** This code will place a button on the page, and will allow the client/user to print the current page ** <html> <head> <script type="text/javascript"> function printpage() { window.print() } </script> </head> <body> <form> <input type="button" value="Print this page" onclick="printpage()"> </form> </body> </html> |
| |