Javascript examples for DOM Event:addEventListener
The onresize event occurs when the browser window has been resized.
Bubbles | No |
---|---|
Cancelable | No |
Supported HTML tags: | <body> |
<!DOCTYPE html> <html> <body> <p>Window resized <span id="demo">0</span> times.</p> <script> window.addEventListener("resize", myFunction); var x = 0;/* w w w . jav a 2s . c om*/ function myFunction() { var txt = x += 1; document.getElementById("demo").innerHTML = txt; } </script> </body> </html>