Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Hierdie gesprek is in die argief. Vra asseblief 'n nuwe vraag as jy hulp nodig het.

Printing an IFrame with PDF content is no longer working using window.frames['frameId'].print();

  • 5 antwoorde
  • 70 hierdie probleem
  • 16 views
  • Laaste antwoord deur mann_inv

more options

I have a parent HTML page that contains an IFrame whose source is a PDF document. In the parent page, I use JavaScript to print the contents of the IFrame (the PDF document) and it no longer works. This worked fine previous to version 4.

I have a parent HTML page that contains an IFrame whose source is a PDF document. In the parent page, I use JavaScript to print the contents of the IFrame (the PDF document) and it no longer works. This worked fine previous to version 4.

All Replies (5)

more options

Does anyone have a work around to this?

more options

This is still an issue in Firefox 4.0.1.

Anyone found a work around yet? Where can I officially report this to Mozilla?

Gewysig op deur dwaddell

more options

Do you have test case set up or a live web page where we can check that out?

more options

Here is an example of what I am trying to do which worked in earlier versions of Firefox and still works in Chrome. Any ideas on getting the print to work?



<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="PDFPrintTest.aspx.cs" Inherits="MozillaTestApp.PDFPrintTest" %>

<title></title>

<form id="form1" runat="server">
<iframe runat="server" id="pdf" name="pdf" style="width:100px; height:100px;" src="PDF/ThePDF.pdf"></iframe> <asp:Button ID="printButton" runat="server" Text="Print" OnClientClick="PrintOnload();return false;" />
</form> <script language="javascript" type="text/javascript"> function PrintOnload() { if (navigator.appName == "Microsoft Internet Explorer") { } else { PrintPDF_FF(); } } function PrintPDF_FF() { window.frames['pdf'].focus(); window.frames['pdf'].print(); } </script>

more options

I have same issue for printing embedded PDF files in iFrames via JavaScript in Firefox 5.0.

In previous versions it was working fine. But not in Firefox 4.0/5.0.

Is there any solution for this problem?