I am displaying a pdf file in by using iframe. I need to prine that pdf file only from that page. I have written below script for printing on button click.
//print pdf file
$("#btnPrint").click(function () {
window.frames["printf"].focus();
window.frames["printf"].print();
});
Its working fine in chrome. But giving error in firefox and IE. In firefix, giving error like :Error: Permission denied to access property 'print'
In IE, giving error like: SCRIPT65535: Invalid calling object
I am not using any plugin for it. Please let me know how can i able to fix the issue?