addEventListener("pagehide", myFunction); - Javascript DOM Event

Javascript examples for DOM Event:addEventListener

Description

The onpagehide event occurs when the user is navigating away from a webpage.

Summary

Bubbles No
Cancelable No
Event type: PageTransitionEvent
Supported HTML tags: <body>

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<body>

<h1 id="demo"></h1>

<script>
window.addEventListener("pageshow", myFunction);

function myFunction() {//w w  w.j  av  a2 s.co  m
    document.getElementById("demo").innerHTML = "Welcome To My Homepage!";
}
</script>

</body>
</html>

Related Tutorials