Join the AMA (Ask Me Anything) with the Firefox leadership team to celebrate Firefox 20th anniversary and discuss Firefox’s future on Mozilla Connect. Mark your calendar on Thursday, November 14, 18:00 - 20:00 UTC!

Търсене в помощните статии

Избягвайте измамите при поддръжката. Никога няма да ви помолим да се обадите или изпратите SMS на телефонен номер или да споделите лична информация. Моля, докладвайте подозрителна активност на "Докладване за злоупотреба".

Научете повече

How to detect back browser event in javascript?

  • 2 отговора
  • 23 имат този проблем
  • 17 изгледи
  • Последен отговор от 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..."); } } }

Всички отговори (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