Skip to content

Instantly share code, notes, and snippets.

@MathRivest
Created August 12, 2014 14:46
Show Gist options
  • Save MathRivest/c5399eaa31669b4c25d1 to your computer and use it in GitHub Desktop.
Save MathRivest/c5399eaa31669b4c25d1 to your computer and use it in GitHub Desktop.
Delay Fonction
$field.on('keyup', function(event){
delay(function(){
alert('Delayed for 1 second')
}, 1000);
});
var delay = (function(){
var timer = 0;
return function(callback, ms){
clearTimeout (timer);
timer = setTimeout(callback, ms);
};
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment