I'm trying to remove this class I added on resize end. How do I trigger an event when the user is done resizing with with vanilla JS
window.addEventListener('resize', throttle(() => {
document.body.classList.add('testing');
}));
I'm trying to remove this class I added on resize end. How do I trigger an event when the user is done resizing with with vanilla JS
window.addEventListener('resize', throttle(() => {
document.body.classList.add('testing');
}));