Skip to content
Related Articles
Get the best out of our app
GFG App
Open App
geeksforgeeks
Browser
Continue

Related Articles

HTML | DOM Storage Event

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

The Storage Event in HTML DOM is used to make change in the storage area in the context of another document. When there is modification in the storage area of the window, a storage event is sent to that window. 

Syntax:

window.addEventListener("storage", script)

Example: 

html




<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML DOM storage Event
    </title>
</head>
 
<body>
     
    <h1>GeeksforGeeks</h1>
     
    <h2>HTML DOM storage Event</h2>
     
    <button onclick = "myGeeks()">
        Click here!
    </button>
     
    <p id = "cont"></p>
     
    <!-- script of DOM storage event -->
    <script>
        window.addEventListener("storage", myGeeks1);
         
        function myGeeks1(event) {
            document.getElementById("cont").innerHTML
                    = "A Computer Science Portal";
        }
         
        function myGeeks() {
            var x = window.open("", "win",
                    "width = 100, height = 100");
                     
            x.localStorage.setItem("mytime", Date.now());
            x.close();
        }
    </script>
</body>
 
</html>                               


Output: Before Click on the button:

  

After Click on the button:

  

Supported Browsers: The browser supported by DOM Storage Event property are listed below:

  • Google Chrome 1 and above
  • Mozilla Firefox 45 and above
  • Edge 15 and above
  • Safari 4 and above
  • Opera 15 and above
  • Internet Explorer 9 and above

My Personal Notes arrow_drop_up
Last Updated : 13 Jun, 2022
Like Article
Save Article
Similar Reads
Related Tutorials