|
|||
|
|
This is a super-easy little script that you can use to form an automatic print-page link on your site. Just insert this code where you want the link
to display and your visitors can choose to print the page they are viewing. Works as a nifty little script as well as a reminder to print the page! You
might want to add a printer icon for a graphical display.
<a href='javascript:;' onClick='window.print();return false'>Print this
page.</a>
AUTOMATIC BACK AND FORWARD SCRIPT
Here are a couple of handy little scripts that automatically send your users back or forward to previously visited pages. This is a handy feature for
catalogues, archives or photo albums, where hard-coding back and foward motion can be problematic. Here they are:
<a href="javascript:history.back(1)">Go Back</a>
<a href="javascript:history.forward(1)">Go Forward</a>