Print Click

D

Don Hoisager

How do I create a print icon, link on my web page that
will enable people to print page w/out using file/print???

Thanks
 
G

grw

Heres one way :

<form><input type="button" value="Print" onClick="window.print()"></form>
 
C

chris leeds

besides the plain text one that grw gave you you can modify it a little and
it will display a picture:
<form><input type="image" src="images/Print.gif"
onClick="window.print()"></form>
just put your print button in the images folder and change the name in the
above code to match the name of your picture.
 
Top