Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Претражи подршку

Избегните преваре подршке. Никада од вас нећемо тражити да зовете или шаљете поруке на број или да делите личне податке. Пријавите сумњиве радње преко „Пријавите злоупотребу” опције.

Learn More

how to detect mozilla firefox window close using javascript

  • 1 одговор
  • 29 има овај проблем
  • 16 прегледа
  • Последњи одговор послао Svetlana

more options

how can i call javascript function when close the browser window? I mean which event is triggered when closing the window..

how can i call javascript function when close the browser window? I mean which event is triggered when closing the window..

Сви одговори (1)

more options
  • unload

This event is sent to a window when the window has closed. This is done after the close event. You should place this event handler on the window element. attribute: onunload

  • close

This event is sent when a request has been made to close the window when the user presses the close button. If you place an event handler on the window element, you can trap the window close. If you return false from the close handler, the window will not close. Return true to have it close normally. Note that this event is only fired when the user presses the close button on the titlebar; use the unload event to capture all attempts to unload the window. attribute: onclose

https://developer.mozilla.org/en/XUL/Events