Open In App

HTML DOM onresize Event

The HTML DOM onresize event occurs on the browser window resize. Only the <body> tag support this event. To get the size of the window use: 

Supported Tags



Syntax: 

In HTML: 



<element onresize="myScript">

In JavaScript: 

object.onresize = function(){myScript};

In JavaScript, using the addEventListener() method: 

object.addEventListener("resize", myScript);

Example: In this example, we will see the use of DOM  onresize Event.




<!DOCTYPE html>
<html>
   
<head>
    <title>HTML DOM onresize event</title>
</head>
   
<body>
    <h1 style="color:green">GeeksforGeeks</h1>
    <h2>HTML DOM onresize event</h2>
    <p>Resize the window</p>
    <p>Resized count: <span id="try">0</span></p>
    <script>
        window.addEventListener("resize", GFGfun);
        let c = 0;
        function GFGfun() {
            let res = c += 1;
            document.getElementById("try").innerHTML = res;
        }
    </script>
</body>
 
</html>

Output: 

 

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

Article Tags :