Mozilla 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

Pdf content not loading while printing using JavaScript

  • 2 प्रत्युत्तर
  • 2
  • 6 views
  • के द्वारा अंतिम प्रतियुतर ankur.bhatnagar

more options

In my web app, I am trying to print a doc using JavaScript, but content of the pdf is not getting loaded, this can be seen in the below link. https://drive.google.com/file/d/0B2nqjT-VxFWwVVhsQ1hLUnJ3MFU/view?usp=sharing

Code: var printWin = window.open(this.lURL, , 'top=100, left=500, width=900, height=800, titlebar=no'); printWin.print();

"this.lURL" is link which brings the pdf file/doc.

Note: As soon as I click on cancel button of print, the content gets loaded. And if I click print blank page gets printed.

In my web app, I am trying to print a doc using JavaScript, but content of the pdf is not getting loaded, this can be seen in the below link. https://drive.google.com/file/d/0B2nqjT-VxFWwVVhsQ1hLUnJ3MFU/view?usp=sharing Code: var printWin = window.open(this.lURL, '', 'top=100, left=500, width=900, height=800, titlebar=no'); printWin.print(); "this.lURL" is link which brings the pdf file/doc. Note: As soon as I click on cancel button of print, the content gets loaded. And if I click print blank page gets printed.

All Replies (2)

more options

I understand that the web app that your are developing has a function to print the contents of a pdf created with javascript, :

Please first check these basic troubleshooting steps for printing:

Does this happen with the default pdf viewer or another?

Next also check with stackoverflow.com: Where to go for developer support

more options

guigs2 said

I understand that the web app that your are developing has a function to print the contents of a pdf created with javascript, : Please first check these basic troubleshooting steps for printing: Does this happen with the default pdf viewer or another? Next also check with stackoverflow.com: Where to go for developer support

I want a solution which doesn't require to reset or change the settings of the browser. Once the app is available globally everyone should be able to use this functionality without altering the settings of the browser.