- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Execute a script when the browser window is being resized in HTML?
When the web browser window is resized, the onresize attribute triggers.
Example
You can try to run the following code to implement onresize attribute −
<!DOCTYPE html> <html> <body onresize = "display()"> <p>Resize the window to trigger event.</p> <script> function display() { alert("Web browser window resized!"); } </script> </body> </html>
- Related Articles
- Execute a script when the browser window is closed in HTML?
- Execute a script when the element is being dragged in HTML?
- Execute a script when the element is being clicked in HTML?
- Execute a script when the element is being double-clicked in HTML?
- Execute a script when the dragged element is being dropped in HTML?
- Which is the event when the browser window is resized in JavaScript?
- Execute a script when the browser starts to work online in HTML?
- Execute a script when the browser starts to work offline in HTML?
- Execute a script when the content of the element is being cut in HTML?
- Execute a script when the content of the element is being copied in HTML?
- Execute a script when the window's history changes in HTML?
- Execute a script when an element's scrollbar is being scrolled in HTML?
- Execute a script when a mouse wheel is being scrolled over an element in HTML?
- Execute a script when the browser is in the process of getting the media data in HTML?
- Execute a script when an element is being dragged over a valid drop target in HTML?

Advertisements