What is the usage of onpagehide event in JavaScript?



The onpagehide event triggers in JavaScript when a user leaves the page and decides to move to another. Some examples include age refresh, a link is clicked, etc.

Example

You can try the following code to learn how to implement onpagehide event in JavaScript.

<!DOCTYPE html> <html>    <body onpagehide="newFunc()">       <p>Close the page and see what happens!</p>       <script>          function newFunc() {             alert("Thank you!");          }       </script>    </body> </html>
Updated on: 2020-05-21T07:47:55+05:30

466 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements