views:

639

answers:

4

Hi,

Can I put a link on my webpage to the Printer ?

To go to the same page like Ctrl-P goes in Firefox, IE.

Thank you.

+6  A: 
<a href="javascript:if(window.print)window.print()">Print</a>
Dave Hinton
+2  A: 

Add this to your link:

onclick="window.print();"
ck
A: 

Using JavaScript, you can. Here is one page showing how.

unwind
A: 

Hi. You may look here and here.

bye.

pomarc