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
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
Ok, follow the following instructions.
1) Make a file called print.html
Make the source:
2) The page that you want this to pop up in put this where you want the button:Code:<img src="../map.png" /><br /> <button onClick="javascript:window.print()">Print Me!</button>
Code:<button onClick="window.open('print.html','print.html','width=400,height=400');">Pop-up</button>
Jeremy | jfein.net
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!!
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:
Code:<center><button onClick="javascript:window.print()">Print Me!</button></center>
Jeremy | jfein.net
Bookmarks