THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

HTML onresize Event Attribute

HTML Event Attributes 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

Differences Between HTML 4.01 and HTML5

The onresize attribute is new in HTML5.


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 HTML Event Attributes