Avatar for Username

Поиск в Поддержке

Избегайте мошенников, выдающих себя за службу поддержки. Мы никогда не попросим вас позвонить, отправить текстовое сообщение или поделиться личной информацией. Сообщайте о подозрительной активности, используя функцию «Пожаловаться».

Подробнее

Is there any close event of firefox browser ?

  • 1 ответ
  • 1 имеет эту проблему
  • 3 просмотра
  • Последний ответ от user293

more options

I want to capture the event that fire when I close the browser.

Is there any way to capture event using JavaScript/JQuery?

Thanks

I want to capture the event that fire when I close the browser. Is there any way to capture event using JavaScript/JQuery? Thanks

Изменено ajeetyadav89

Все ответы (1)

more options

I guess I'm kind of confused. Are you developing a webpage or a firefox add-on (although the jquery part makes me think you are making a webpage)?

There isn't any way to detect when the application quits, since all javascript stops running once the webpage is closed. However, you can detect when the webpage is about to be left, either from the application closing, the tab being closed, or the user going to a different page using the onbeforeunload event.

(also, this works in all browsers, not just firefox).