Questo sito potrebbe offrire funzionalità limitate durante le operazioni di manutenzione per migliorare l'esperienza utente. Se un articolo non risolve il tuo problema e vuoi richiedere supporto, la nostra comunità di supporto è pronta ad aiutarti tramite @FirefoxSupport su Twitter e /r/firefox su Reddit.

Cerca nel supporto

Attenzione alle mail truffa. Mozilla non chiederà mai di chiamare o mandare messaggi a un numero di telefono o di inviare dati personali. Segnalare qualsiasi attività sospetta utilizzando l'opzione “Segnala abuso”.

Ulteriori informazioni

Questa discussione è archiviata. Inserire una nuova richiesta se occorre aiuto.

How to detect back browser event in javascript?

  • 2 risposte
  • 23 hanno questo problema
  • 17 visualizzazioni
  • Ultima risposta di guigs

more options

How to detect browser event in javascript? Not working for me. Since i love mozilla to use. Working in IE.

function HandleBackFunctionality(event) {


  if(window.event)
  {
       alert("Browser1");
       if(window.event.clientX < 40 && window.event.clientY < 0)
       {
           alert("Browser back button is clicked...");
       }
       else
       {
           alert("Browser refresh button is clicked...");
       }
   }
   else
   {
        alert("Browser2");
       if(event.currentTarget.performance.navigation.type == 1)
       {
            alert("Browser refresh button is clicked...");
       }
       if(event.currentTarget.performance.navigation.type == 2)
       {
            alert("Browser back button is clicked...");
       }
   }

}

How to detect browser event in javascript? Not working for me. Since i love mozilla to use. Working in IE. function HandleBackFunctionality(event) { if(window.event) { alert("Browser1"); if(window.event.clientX < 40 && window.event.clientY < 0) { alert("Browser back button is clicked..."); } else { alert("Browser refresh button is clicked..."); } } else { alert("Browser2"); if(event.currentTarget.performance.navigation.type == 1) { alert("Browser refresh button is clicked..."); } if(event.currentTarget.performance.navigation.type == 2) { alert("Browser back button is clicked..."); } } }

Tutte le risposte (2)

more options

Firefox doesn't have a catch-all event object (window.event), but you can create event listeners for the objects of interest. I don't know whether the toolbar is one of those; probably not, since why should web pages be able to see what you are doing on the toolbar??

If we discard the idea of looking for events outside of the page and focus on what is happening inside the page, have you looked at this:

https://developer.mozilla.org/en-US/docs/Web/API/Window.onbeforeunload

more options

Please also try the new version of Firefox. Update Firefox to the latest release