Print Click

  • Thread starter Thread starter Don Hoisager
  • Start date Start date
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
 
Heres one way :

<form><input type="button" value="Print" onClick="window.print()"></form>
 
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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top