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

Lolu chungechunge lwabekwa kunqolobane. Uyacelwa ubuze umbuzo omusha uma udinga usizo.

Javascript Redirection Not Working

  • 2 uphendule
  • 1 inale nkinga
  • 8 views
  • Igcine ukuphendulwa ngu Fred

more options

Hello,

I have a web page that prints a document, and then redirects back to the main page. This website has always worked in every browser, and now in Firefox 84.0.2 it no longer redirects.

What changed in Firefox, and how do I get it redirecting again?

Here is a snippet of the code in question:

<script type='text/javascript'>

    var interval = setInterval(function() {
         if(document.readyState === 'complete') {
              clearInterval(interval);
              window.print();
         }
    }, 100);
    
    window.onbeforeprint = function() {
         window.location = 'https://www.mozilla.org';
    }

</script>

Hello, I have a web page that prints a document, and then redirects back to the main page. This website has always worked in every browser, and now in Firefox 84.0.2 it no longer redirects. What changed in Firefox, and how do I get it redirecting again? Here is a snippet of the code in question: <script type='text/javascript'> var interval = setInterval(function() { if(document.readyState === 'complete') { clearInterval(interval); window.print(); } }, 100); window.onbeforeprint = function() { window.location = 'https://www.mozilla.org'; } </script>

All Replies (2)

more options

FWIW this is the type of issue to report at https://bugzilla.mozilla.org/ rather than this end user support forum.

That said, it seems weird that you would navigate away from the page to be printed in `onbeforeprint`. Why not `onafterprint`?

more options

Jonathan Watt said

FWIW this is the type of issue to report at https://bugzilla.mozilla.org/ rather than this end user support forum. That said, it seems weird that you would navigate away from the page to be printed in `onbeforeprint`. Why not `onafterprint`?

Hi Jonathan,

Thank you for the reply. I use onbeforeprint in Firefox, because onafterprint does not seem to work.

For the time being, and just in case anyone else is having the issue, I have found that using a seperate setTimeout with an interval of 5 seconds seems to work for my purpose.