Please note, this is a STATIC archive of website www.w3schools.com from 05 May 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.
THE WORLD'S LARGEST WEB DEVELOPER SITE

HTML onresize Event Attribute

❮ HTML Event Attributes

Example

Execute a JavaScript when the browser window is resized:

<body onresize="myFunction()">
Try it Yourself »

Definition and Usage

The onresize attribute fires when the browser window is resized.


Browser Support

Event Attribute
onresize Yes Yes Yes Yes Yes

Syntax

<element onresize="script">

Attribute Values

Value Description
script The script to be run on onresize

Technical Details

Supported HTML tags: <body>

Related Pages

HTML DOM reference: onresize event


❮ HTML Event Attributes