Skip to content

Instantly share code, notes, and snippets.

@kcliu
Created September 28, 2012 04:25
Show Gist options
  • Save kcliu/3797909 to your computer and use it in GitHub Desktop.
Save kcliu/3797909 to your computer and use it in GitHub Desktop.
function resizeStuff() {
//Time consuming resize stuff here
}
var TO = false;
$(window).resize(function(){
if(TO !== false)
clearTimeout(TO);
TO = setTimeout(resizeStuff, 200); //200 is time in miliseconds
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment