up vote 16 down vote favorite
9
share [g+] share [fb]

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

link|improve this question

68% accept rate
Greetings Andrew, one question...it automatically shows a save dialog for the pdf file in IE, Firefox. How can I supress that. I tried setting the src of iframe using javascript but it still shows that save dialog – Imran Omar Bukhsh Dec 4 '11 at 9:42
feedback

protected by Community Aug 2 '11 at 11:31

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

8 Answers

up vote 17 down vote accepted

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

iframe:

function printMe() {
  window.print()
}

parent:

document.frame1.printMe()
link|improve this answer
3  
Good plan, batman! – Andrew Bullock Jan 23 '09 at 15:40
2  
How did you get document.frame1 to work? I had to use this instead: document.getElementById('frame1').contentWindow.printMe() – Andres Jaan Tack Jun 9 '09 at 16:44
1  
Use the NAME property, not the ID. – Diodeus Jun 9 '09 at 17:46
It is not working in IE8.It is printing all the contents (outside of iframe also).Any idea please.. – Dinesh Feb 8 '10 at 7:09
Check your print settings. The browser controls this, not the page. – Diodeus Feb 8 '10 at 15:21
show 1 more comment
feedback

here is my complete, cross browser solution:

in the iframe page:

function printPage() { print(); }

in the main page

function printIframe(id)
{
    var iframe = document.frames ? document.frames[id] : document.getElementById(id);
    var ifWin = iframe.contentWindow || iframe;
    iframe.focus();
    ifWin.printPage();
    return false;
}
link|improve this answer
1  
Thanks for this script Andrew. However you did leave one piece out that makes it work in IE 8. Please see my post below – Max Felker May 26 '10 at 16:07
bah bloody ie!! – Andrew Bullock May 26 '10 at 16:27
Do you know if this will work on all browsers? – Michael Jan 20 '11 at 20:54
Ie, webkit, mozilla. should work in opera, but lets face it, who uses that? – Andrew Bullock Jan 21 '11 at 10:44
@Max I've updated my answer to include your edit, this page keeps getting hits so i thought it would be helpful :) – Andrew Bullock Mar 2 '11 at 10:19
show 4 more comments
feedback

I used Andrew's script but added a piece before the printPage() function is called. The iframe needs focus, otherwise it will still print the parent frame in IE.

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

Don't thank me though, it was Andrew who wrote this. I just made a tweak =P

link|improve this answer
thanks, you saved my life (or sanity at least), fsck IE – ammoQ Jan 13 '11 at 12:04
Do you know if this will work on all browsers? – Michael Jan 20 '11 at 20:54
yes i use this on production applications – Max Felker Jan 24 '11 at 21:26
feedback

In addition to Andrew's and Max's solutions, using iframe.focus() resulted in printing parent frame instead of printing only child iframe in IE8. Changing that line fixed it:

function printIframe(id)
{
    var iframe = document.frames ? document.frames[id] : document.getElementById(id);
    var ifWin = iframe.contentWindow || iframe;
    ifWin.focus();
    ifWin.printPage();
    return false;
}
link|improve this answer
hmm does this continue to work in all other browsers? – Andrew Bullock Apr 21 '11 at 7:50
yes, it was tested in firefox 3.6, ie8, ie6, and chrome 8 – Mehmet Serdar Biçer Sep 17 '11 at 12:53
feedback

Para firefox tambien utilicen window.frames pero agreguen la propiedad name al iframe porque ese utiliza firefox

IE: window.frames[id]

Firefox: window.frames[name]

<img src="print.gif"  onClick="javascript: window.frames['factura'].focus(); parent['factura'].print();">
<iframe src="factura.html" width="100%" height="400" id="factura" name="factura"></iframe>
link|improve this answer
1  
easy for you to say – Andrew Bullock Oct 29 '10 at 10:16
I agree....... ;) – Jakub Jan 11 '11 at 2:36
feedback

One thing to note is if you are testing this locally using file:///, it will not work on chrome as the function in the iframe will appear as undefined. However once on a web server it will work.

link|improve this answer
feedback

Use this:

window.onload = setTimeout("window.print()", 1000);
link|improve this answer
feedback

I had to make few modifications in order to make it with in IE8 (didn't test with other IE flavours)

1) document.frames[param] seem to accept a number, not ID

printIframe(0, 'print');

function printIframe(num, id)
{
  var iframe = document.frames ? document.frames[num] : document.getElementById(id);
  var ifWin = iframe.contentWindow || iframe;

  ifWin.focus();
  ifWin.printPage();

  return false;
}

2) I had a print dialog displayed upon page load and also there was a link to "Click here to start printing" (if it didn't start automatically). In order to get it work I had to add focus() call

<script type="text/javascript">
  $(function(){
    printPage();
  });

  function printPage()
  {
    focus();
    print();
  }
</script>
link|improve this answer
feedback

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