onpageshow = myFunction(); - Javascript DOM Event

Javascript examples for DOM Event:Element Event Attribute

Description

The onpageshow event occurs when a user navigates to a webpage.

Summary

Bubbles No
Cancelable No
Supported HTML tags: <body>

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<body>

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

<script>
document.getElementsByTagName("BODY")[0].onpageshow = function() {myFunction()};

function myFunction() {/*from ww  w  .  j  a  va 2  s . com*/
  document.getElementById("demo").innerHTML = "Welcome To My Homepage!";
};

</script>

</body>
</html>

Related Tutorials