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

Related Articles

HTML | onresize Event Attribute

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

The onresize event attribute is triggered each time when resize the browser window size.
Supported Tags: 

Syntax: 
 

<element onresize = "script">

Attribute Value: This attribute contains single value script which works when onresize event call.
Note: This attribute works with body tag.
Example: 
 

html




<!DOCTYPE html >
<html>
    <head>
        <title>onresize event attribute</title>
        <style>
            body {
                text-align:center;
            }
            h1 {
                color:green;
            }
        </style>
        <script>
            function Geeks() {
                alert("Window Size Changed") ;
            }
        </script >
    </head>
    <body onresize = "Geeks()">
        <h1>GeeksforGeeks</h1>
        <h2>onresize event attribute</h2>
    </body>
</html>                                   

Output: 
 

onresize

Supported Browser: The browser supported by onresize event attribute are listed below: 
 

  • Google Chrome 1
  • Edge 12
  • Internet Explorer 4
  • Opera 7
  • Firefox 1
  • Safari 1.1

 

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