In my app, I want to print a PDF file that resides in iframe. Here is my code ..
<iframe src="pdf/output.pdf" id="pdfFrame"></iframe>
And here is the script to print the pdf..
document.getElementById("pdfFrame").focus();
document.getElementById("pdfFrame").contentWindow.print();
The code above works fine but It opens a windows popup before printing. But as per my requirement I want direct laser print without opening the popup.
Is there any way to do this ???