javascript when resize is done code example
Example 1: resize js
window.addEventListener('resize', function(event){
// do stuff here
});
Example 2: resize js
<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>