Skip to content

Instantly share code, notes, and snippets.

@syphoxy
Created March 25, 2013 15:41
Show Gist options
  • Save syphoxy/5238042 to your computer and use it in GitHub Desktop.
Save syphoxy/5238042 to your computer and use it in GitHub Desktop.
this is a simple example of how to throttle the window resize event.
$(function() {
var throttle;
$(window).resize(function() {
clearTimeout(throttle);
throttle = setTimeout(function() {
/* resize code */
}, 100);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment