In case we want to execute a function when a particular element/object is unloaded, we can follow this approach.
<body onunload="CallFunction()"> Enter your name: <input type="text" name="txtName" id="txtName" /> <input type="button" id="btn" name="btn" value="Submit" /> <a href="Add.htm">Go to Add page</a> <script> function CallFunction() { alert("Navigating the page."); } </script> </body>
In the above code snippet, we have specified onunload
event in the body element that executes when the page is unloaded or user navigates from this page to another page. In this event we are executing “CallFunction()” function that shows alert like displayed below.
OUTPUT
Note: In few browser this event doesn't executes.
Views: 5367 | Post Order: 37