Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Browser Print Function with Javascript 1

Status
Not open for further replies.

Marc13

Vendor
Apr 18, 2005
2
US
Hi there,<br>is it possible to use the browser print<br>function with Javascript?<br><br>Bye<br>Marc<br>
 
um, you should know that window.print() only works with ie <br>(not sure what versions tho).<br><br>try this:<br><br>&lt;script language=&quot;javascript&quot;&gt;<br>function myPrinter(){<br>if (window.print()) window.print<br>else {<br>alert(&quot;Your browser does not support automatic printing. Please select \&quot;Print\&quot; from the file menu&quot;);}<br>}<br>&lt;/script&gt;<br><br>with that code snipit, all you need to do to print a page is call the function myPrinter. like this: myPrinter();<br><br> <p>theEclipse<br><a href=mailto:eclipse_web@hotmail.com>eclipse_web@hotmail.com</a><br><a href=robacarp.webjump.com>robacarp.webjump.com</a><br>**-Trying to build a documentation of a Javascript DOM, crossbrowser, of course. E-mail me if you know of any little known events and/or methods, etc.
 
Here is something that I fount in the net and that works for me.<br><br>//==========================================================<br>function printPG (){<br> if (document.all){<br> document.body.insertAdjacentHTML(&quot;beforeEnd&quot;,<br>&nbsp;&nbsp;&nbsp;&nbsp;&quot;&lt;object id=\&quot;printWB\&quot; width=0 height=0 classid=\&quot;clsid:8856F961-340A-11D0-A96B-00C04FD705A2\&quot;&gt;&lt;/object&gt;&quot;);<br> execScript(&quot;on error resume next: printWB.ExecWB 6, 1&quot;, &quot;VBScript&quot;);<br> printWB.outerHTML = &quot;&quot;;<br> }<br> else{<br> window.print();<br> }<br>} <p>IvanP<br><a href=mailto:ip@thehyper.net>ip@thehyper.net</a><br><a href= > </a><br>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top