Tutorials References Menu

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