Skip to content Skip to sidebar Skip to footer

Print An IFrame Using Document.frames In Firefox

This is driving me crazy. I've been through several questions on here and other websites and cannot get this to work. I have an iFrame within my parent page, containing a PDF docum

Solution 1:

The following works for me in Firefox 11:

window.frames.loyaltyBadge.focus();
window.frames.loyaltyBadge.print();

Post a Comment for "Print An IFrame Using Document.frames In Firefox"