Edit This Code:
<!DOCTYPE html>
<html>
<body>

<p>This example uses the addEventListener() method to attach a "pageshow" event to the window object.</p>

<p><strong>Note:</strong> The pageshow event is not supported in Internet Explorer 10 and earlier versions.</p>

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

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

function myFunction() {
    document.getElementById("demo").innerHTML = "Welcome To My Homepage!";
}
</script>

</body>
</html>


Result:
Try it Yourself - © w3schools.com
Privacy Policy