//listen for window resize eventwindow.addEventListener('resize', function(event){
var newWidth = window.innerWidth;
var newHeight = window.innerHeight;
});
<p>Resize the browser window to fire the <code>resize</code> event.</p><p>Window height: <spanid="height"></span></p><p>Window width: <spanid="width"></span></p>