Log in

View Full Version : Pop up image with print ability



Defender90
07-08-2008, 05:00 PM
I love this site?

Anyone have a recommendation. I want to have a link open up a small pop up screen(400x400) and I want the ability for someone to easily print it. It will be a map.

Any suggestions?

Thanks

Nile
07-09-2008, 12:32 AM
Ok, follow the following instructions.
1) Make a file called print.html
Make the source:


<img src="../map.png" /><br />
<button onClick="javascript:window.print()">Print Me!</button>

2) The page that you want this to pop up in put this where you want the button:


<button onClick="window.open('print.html','print.html','width=400,height=400');">Pop-up</button>

Defender90
07-09-2008, 01:08 PM
Thanks...seem to work great. for some reason I have another image above the print me button. red X. IN IE only

Also, How would I center the print me button?

Thanks again!!

Nile
07-09-2008, 01:22 PM
Can I see a link to your page?
To center the print me button:
Change <button onClick="javascript:window.print()">Print Me!</button> in print.html To:


<center><button onClick="javascript:window.print()">Print Me!</button></center>