Published
- 1 min read
js window resize listener
The solution for this is noted below
js window resize listener
Solution
//listen for window resize event
window.addEventListener('resize', function(event){
var newWidth = window.innerWidth;
var newHeight = window.innerHeight;
});
Try other methods by searching on the site. That is if this doesn’t work