Skip to content

Instantly share code, notes, and snippets.

@soerson
Last active July 30, 2016 20:51
Show Gist options
  • Save soerson/b84f3d6b44650576a03e93731c794bbe to your computer and use it in GitHub Desktop.
Save soerson/b84f3d6b44650576a03e93731c794bbe to your computer and use it in GitHub Desktop.
window resize event handler
var resizeID;
window.addEventListener("resize", function () {
clearTimeout(resizeID);
resizeID = setTimeout(resizeHandler, 500);
});
function resizeHandler() {
/* ... */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment