Open In App

HTML DOM onpageshow Event

The DOM onpageshow event in HTML occurs upon navigating a webpage by the user. The onload event does not happen when the page is loaded from the cache and onpageshow event occurs every time the page is loaded otherwise both events are similar.

Supported Tags



Syntax: 

<element onpageshow="myScript">
object.onpageshow = function(){myScript};
object.addEventListener("pageshow", myScript); 

Example: Using JavaScript 






<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML DOM onpageshow Event
    </title>
</head>
 
<body>
    <h1 id="hID" style="color:green"></h1>
    <h2>HTML DOM onpageshow Event</h2>
   
    <script>
        document.getElementsByTagName(
            "BODY")[0].onpageshow = function () {
                GFGfun()
            };
        function GFGfun() {
            document.getElementById("hID").innerHTML =
                "GeeksforGeeks";
        };
    </script>
</body>
</html>

Output: 

Example: Using the addEventListener() method 




<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML DOM onpageshow Event
    </title>
</head>
 
<body>
    <h1 id="hID" style="color:green"></h1>
    <h2>HTML DOM onpageshow Event</h2>
   
    <script>
        window.addEventListener("pageshow", Geeks);
        function Geeks() {
            document.getElementById("hID").innerHTML =
                "GeeksforGeeks";
        }
    </script>
</body>
</html>

Output: 

Supported Browsers: The browsers supported by HTML DOM onpageshow Event are listed below: 


Article Tags :