vote up 2 vote down star

I have a page with a "Print" link that takes the user to a printer-friendly page. The client wants a print dialog box to appear automatically when the user arrives at the print-friendly page. How can I do this with javascript?

flag

3 Answers

vote up 3 vote down check
window.print();

should do it... usless you mean a custom looking popup.

link|flag
vote up 4 vote down

You could do

<body onload="window.print()">
...
</body>
link|flag
vote up 1 vote down

I do this to make sure they remember to print landscape, which is necessary for a lot of pages on a lot of printers.

<a href="javascript:alert('Please be sure to set your printer to Landscape.');window.print();">Print Me...</a>

or

<body onload="alert('Please be sure to set your printer to Landscape.');window.print();">
etc.
</body>
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.