I am trying to print an iframe with this function:
function printIframe(id) {
iframe = document.frames ? document.frames[id] : document.getElementById(id);
ifWin = iframe.contentWindow || iframe;
iframe.focus();
ifWin.printPage();
}
This code successfully prints iframes in all browsers. The problem is that safari will not print some images. Some images will print, whereas others will just print blank spaces.
Has anyone ran into this problem before?