vote up 1 vote down star
1

Hi,

Can someone please help me out with printing the contents of an IFrame via a javascript call in Safari/Chrome.

This works in firefox:

$('#' + id)[0].focus();
$('#' + id)[0].contentWindow.print();

this works in IE:

window.frames[id].focus();
window.frames[id].print();

But I can't get anything to work in Safari/Chrome.

Thanks

Andrew

flag

44% accept rate

3 Answers

vote up 2 vote down check

Put a print function in the iframe and call it from the parent.

iframe:

function printMe() {
  window.print()
}

parent:

document.frame1.printMe()
link|flag
Good plan, batman! – Andrew Bullock Jan 23 at 15:40
1  
How did you get document.frame1 to work? I had to use this instead: document.getElementById('frame1').contentWindow.printMe() – Andres Jaan Tack Jun 9 at 16:44
Use the NAME property, not the ID. – Diodeus Jun 9 at 17:46
vote up 0 vote down

it appears this approach is not cross browser compliant. :(

Does not work in Opera 10.01 1844 and Chrome 3.0.195.33

I did a simple test with an html file using this code and both Opera and Chrome print out the entire page (not just the iframe). I called the function from both the parent window and from inside the iFrame calling the parent script.

any thoughts on why this could be happening?

link|flag
vote up 3 vote down

here is my complete, cross browser solution:

in the iframe page:

function printPage() { print(); }

in the pain page

function printIframe(id)
{
    var iframe = document.frames ? document.frames[id] : document.getElementById(id);
    var ifWin = iframe.contentWindow || iframe;
    ifWin.printPage();
    return false;
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.