window.print() - without opening the print window

32,529

Solution 1

try

For Mozilla : http://forums.mozillazine.org/viewtopic.php?t=48336

When you use JavaScript's window.print() to print a Web page in IE, by default, it prompts IE's printer dialog box. To avoid this, use the following JavaScript code:

if (navigator.appName == "Microsoft Internet Explorer")
{
var PrintCommand = '<object ID="PrintCommandObject" WIDTH=0 HEIGHT=0
CLASSID="CLSID:8856F961-340A-11D0-A96B-00C04FD705A2"></object>';
document.body.insertAdjacentHTML('beforeEnd', PrintCommand);
PrintCommandObject.ExecWB(6, -1); PrintCommandObject.outerHTML = "";
}
else {
window.print();
}

from : http://www.devx.com/tips/Tip/30834

Solution 2

It called silent printing and you can do it on several browsers but it isn't that simple..

On Fire Fox -

Type about:config at Firefox’s location bar and hit Enter.

Right click at anywhere on the page and select New > Boolean

Enter the preference name as print.always_print_silent and click OK.

Look at the following question:

"Silent" Printing in a Web Application

Share:
32,529
Lea Cohen
Author by

Lea Cohen

Web developer, both server-side and client-side. Started my web career with ASP.NET and now also write in PHP (mainly Wordpress, some Moodle). SOreadytohelp

Updated on July 09, 2020

Comments