
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- 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 Script on Browser Window Resize 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>
Advertisements