Detect Browser Close Event
How to detect browser or tab closing ?
How to detect browser or tab closing in JavaScript ?
tab or window closing in a browser can be detected by using the beforeunload
event. This can be used to alert the user in case some data is unsaved on the page, or the user has mistakenly navigated away from the current page by closing the tab or the browser.
The addEventListener
() method is used to set up a function whenever a certain event occurs. The beforeunload
event is fired just before the windows and its resources are to be unloaded. When this event is fired, the webpage is visible and the event is still cancellable at this point.
The event handler should call preventDefault()
to show the confirmation dialog according to the specifications. If the user wishes to continue to a new page, then it navigates to the new page, otherwise the navigation is cancelled. However, older browsers may not support this method and a legacy method is used in which the event handler must return a string. This returned string can be empty.
Some browsers may not decide to show any confirmation boxes unless the user has interacted with the page. This is used to prevent unwanted or malicious websites from creating unnecessary pop-ups. The user may have to interact with the page to see the confirmation message.
This method works for detecting both when a tab is being closed or when the browser is being closed.
Last updated
Was this helpful?