Skip to content

Instantly share code, notes, and snippets.

@FiNGAHOLiC
Created January 13, 2012 12:11
Show Gist options
  • Save FiNGAHOLiC/1605801 to your computer and use it in GitHub Desktop.
Save FiNGAHOLiC/1605801 to your computer and use it in GitHub Desktop.
Event throttle
var timer;
window.addEventListener('resize', function(){
if(timer) return;
/* ここに処理 */
timer = setTimeout(function(){
timer = undefined;
}, 100);
}, false);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment