check window resize javascript code example

Example 1: js window resize listener

//listen for window resize event
window.addEventListener('resize', function(event){
    var newWidth = window.innerWidth;
    var newHeight = window.innerHeight; 
});

Example 2: check window resize javascript

window.addEventListener("resize", () => {
		// CODE
});

Example 3: how to resize window

To resize browser window 
-I would create object of dimensions class
Dimension newD = new Dimension(480,620)
-Than I resize the current window to the given dimension
driver.manage().window().setSize(newD)

Example 4: js windowresize event

<p>Resize the browser window to fire the <code>resize</code> event.</p>
<p>Window height: <span id="height"></span></p>
<p>Window width: <span id="width"></span></p>

Tags:

Misc Example