addEventListener("resize", myFunction); - Javascript DOM Event

Javascript examples for DOM Event:addEventListener

Description

The onresize event occurs when the browser window has been resized.

Summary

Bubbles No
Cancelable No
Supported HTML tags: <body>

Demo Code

ResultView the demo in separate window

<!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>

Related Tutorials