HTML | onresize Event Attribute
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:
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
Please Login to comment...