Answers for "window . resize"

17

javascript window resize event

//listen for window resize event
window.addEventListener('resize', function(event){
    var newWidth = window.innerWidth;
    var newHeight = window.innerHeight; 
});
Posted by: Guest on July-31-2019
2

resize js

const heightOutput = document.querySelector('#height');
const widthOutput = document.querySelector('#width');

function reportWindowSize() {
  heightOutput.textContent = window.innerHeight;
  widthOutput.textContent = window.innerWidth;
}

window.onresize = reportWindowSize;
Posted by: Guest on April-08-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language