Skip to content

Instantly share code, notes, and snippets.

@ingozoell
Created August 4, 2016 18:20
Show Gist options
  • Save ingozoell/5c5fd4e20e32e078a15cd72aa96bd679 to your computer and use it in GitHub Desktop.
Save ingozoell/5c5fd4e20e32e078a15cd72aa96bd679 to your computer and use it in GitHub Desktop.
$(window).bind('resize', function(e)
{
window.resizeEvt;
$(window).resize(function()
{
clearTimeout(window.resizeEvt);
window.resizeEvt = setTimeout(function()
{
//code to do after window is resized
}, 250);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment