javascript print pdf file..

Printing pdf through javascript. No print dialog...

window.focus()
window.print()
will generate error on F12 (IE10) Access Denied. Only when it prints pdf files.

Then I have tried to solve this by:
var ax = top.document.getElementById('mainFrame');
ax.contentWindow.focus();
ax.contentWindow.print();

set watch: ax exists as an object - contentwindow and finally print:

However, Access Denied are generated as well. What is problem?
That is set up on local computer... Both server and client.. Possibly problem when that will be different domain computer...






Comments

Sign In or Register to comment.

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Categories