document.onresize code example
Example 1: js window resize listener
window.addEventListener('resize', function(event){
var newWidth = window.innerWidth;
var newHeight = window.innerHeight;
});
Example 2: onresize js
window.onresize = () => {
this.setState({ ww: window.innerWidth }); this.build(); this.draw();
}
Example 3: window change detect
var oldHref = document.location.href;
window.onload = function() {
var bodyList = document.querySelector("body")
,observer = new MutationObserver(function(mutations) {
mutations.forEach(function(mutation) {
if (oldHref != document.location.href) {
oldHref = document.location.href;
}
});
});
var config = {
childList: true,
subtree: true
};
observer.observe(bodyList, config);
};
Example 4: div resize event typescript
resizeObservable$: Observable<Event>
resizeSubscription$: Subscription
ngOnInit() {
this.resizeObservable$ = fromEvent(window, 'resize')
this.resizeSubscription$ = this.resizeObservable$.subscribe( evt => {
console.log('event: ', evt)
})
}