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!

Este site está com funcionalidades limitadas enquanto realizamos manutenção para melhorar sua experiência de uso. Se nenhum artigo resolver seu problema e você quiser fazer uma pergunta, nossa comunidade de suporte pode te ajudar em @FirefoxSupport no Twitter e /r/firefox no Reddit.

Pesquisar no site de suporte

Evite golpes de suporte. Nunca pedimos que você ligue ou envie uma mensagem de texto para um número de telefone, ou compartilhe informações pessoais. Denuncie atividades suspeitas usando a opção “Denunciar abuso”.

Saiba mais

Esta discussão foi arquivada. Faça uma nova pergunta se precisa de ajuda.

How to detect back browser event in javascript?

  • 2 respostas
  • 23 têm este problema
  • 17 visualizações
  • Última resposta de 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..."); } } }

Todas as respostas (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