Printing Specific Content on a web page.

V

vrindaj

Hi
I would like to print a specific image on my web page - not the entire page. Is there a way of doing this? Windows.print() command prints the entire page!
 
S

Stefan B Rusynko

No can do unless you used a CSS media style to prevent printing of everything else on the page,
- the browser print control is page based



| Hi!
| I would like to print a specific image on my web page - not the entire page. Is there a way of doing this? Windows.print() command
prints the entire page!
 
A

Andrew Murray

link to the photo (opening new window) with just the image displayed, put a
link/button using the
onclick='window.print();" event. put a window.close(); command in as well!

www.jimco.com has an addin for popup windows, else use the insert hyperlink >
target to specify new window.





Stefan B Rusynko said:
No can do unless you used a CSS media style to prevent printing of everything else on the page,
- the browser print control is page based



| Hi!
| I would like to print a specific image on my web page - not the entire page.
Is there a way of doing this? Windows.print() command
 
Top