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.

Firefox not redirecting when using window.print() script

  • 2 antwoorde
  • 1 het hierdie probleem
  • 1 view
  • Laaste antwoord deur pcdebol

more options

Have a simple java script on a webpage to bring up the print dialog before redirecting to another page.

<a onclick="javascript:window.print()" href="Screen.php">Print and continue</a>

When the printer dialog comes up if you print it does not redirect but stays on the page. If you cancel the print job it will go ahead and redirect to where it's supposed to go. Worked fine before the latest update was wondering if there was a workaround for this or if anyone was aware of this.

Have a simple java script on a webpage to bring up the print dialog before redirecting to another page. <a onclick="javascript:window.print()" href="Screen.php">Print and continue</a> When the printer dialog comes up if you print it does not redirect but stays on the page. If you cancel the print job it will go ahead and redirect to where it's supposed to go. Worked fine before the latest update was wondering if there was a workaround for this or if anyone was aware of this.

Gekose oplossing

The inconsistency is puzzling. If you change your onclick to the following code, you can see a timing difference in the appearance of the confirm dialog that might be associated with the problem. Maybe printing went from synchronous to asynchronous and now the navigation is attempted at a time when it is not permitted?

onclick="window.print(); if(!confirm('Finished printing?')) return false;"

Lees dié antwoord in konteks 👍 0

All Replies (2)

more options

Gekose oplossing

The inconsistency is puzzling. If you change your onclick to the following code, you can see a timing difference in the appearance of the confirm dialog that might be associated with the problem. Maybe printing went from synchronous to asynchronous and now the navigation is attempted at a time when it is not permitted?

onclick="window.print(); if(!confirm('Finished printing?')) return false;"

more options

Thank you that helps. Not perfect but will make it easier for the people using the program. It's an internal program and they use that print redirect about a hundred times a day.