html - remove message select printer and automatically print the document with javascript -


i'm working in process of printing documents , found alternative using javascript.

the code is:

 <html> <head> <script type="text/javascript"> function printpage() {    window.print();    window.close(); } </script> </head> <body onload="printpage()"> <embed src="pdfhere.pdf"/> </body> </html> 

if create html page , open internet explorer, sent message select printer , print document. what want automatically print document without displaying message help.

you can't skip browser print dialog. provided browser/os.

window.print() best can do.


Comments

Popular posts from this blog

Unable to remove the www from url on https using .htaccess -