Click to See Complete Forum and Search --> : Print another page


Suby
08-18-2003, 03:48 AM
Hi all:

I want to print a page from another page. I have a master page with links to some other pages. I have placed the text "print | open" beside each link. When I click "print," it should print the respective page.
The function window.print() is printing only the active page.

Thanks for your help.

AdamGundry
08-18-2003, 06:17 AM
You can only print documents that are open, so your link should look something like this:

<a href="example.html" onclick="w = window.open(this.href);w.print();w.close();return false;">Print example.html</a>

Adam

P.S. For users with JS disabled, this simply opens the document.

AnoopGopan
02-13-2009, 04:45 AM
hi Adam,
i tried this, but hav some troubles. the window is opening and closing within a second, but the printer setup window is not opening. but when i removed w.close it's working, at the same time the window is also popping up behind the printer set up screen. i don't want the window to pop up. Is thr any alternate ways.
Could you please help me to sort out this problem.

thanks n regards
Anoop