"If a worker wants to do his job well, he must first sharpen his tools." - Confucius, "The Analects of Confucius. Lu Linggong"
Front page > Programming > How to Execute Code on Browser Window Close or Page Refresh?

How to Execute Code on Browser Window Close or Page Refresh?

Published on 2024-11-22
Browse:520

How to Execute Code on Browser Window Close or Page Refresh?

Executing Code on Browser Window Close or Page Refresh

Often, it is desirable to perform specific actions when a user closes a browser window or refreshes a web page. Fortunately, there are two event handlers available to address this need: window.onbeforeunload and window.onunload.

window.onbeforeunload

The onbeforeunload event is triggered when a user attempts to leave a page. Typically, it is used to display a confirmation box asking the user to confirm their choice or prevent them from leaving the page if they have unsaved data. However, by not returning a string or setting event.returnValue, you can prevent the browser from showing a message and execute your code silently.

window.onunload

The onunload event is fired when a page is unloaded from the browser. It is commonly used to perform cleanup tasks such as removing any lingering event listeners or closing database connections.

Implementation

Both onbeforeunload and onunload can be assigned to window properties or using the .addEventListener method. Here's an example:

// window property
window.onbeforeunload = function() {
  // Do something
};

// .addEventListener
window.addEventListener("beforeunload", function(e) {
  // Do something
});

Note:

In the case of iframes, onbeforeunload events do not trigger when the iframe is deleted by its parent, but unload and pagehide events do. However, Firefox currently has a bug that prevents these events from firing for iframe deletion cases, making it impossible to run code immediately before an iframe is removed in Firefox.

Latest tutorial More>

Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.

Copyright© 2022 湘ICP备2022001581号-3