View on GitHub

notes

A collection of my TIL notes and commonplace book entries.

Debouncing the window resize event

window.addEventListener('resize', () => {

    window.clearTimeout(window.resizeTimeout)

    window.resizeTimeout = window.setTimeout(() => {

        doSomething()

    }, 500)

})

Source: https://perdjurner.com/#/debouncing-the-window-resize-event