Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
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> Advertisements
