Skip to content

Instantly share code, notes, and snippets.

@ericchen
Created March 26, 2011 09:58
Show Gist options
  • Save ericchen/888174 to your computer and use it in GitHub Desktop.
Save ericchen/888174 to your computer and use it in GitHub Desktop.
instant search
$(document).onready(function(){
var _timerId = 0;
$("searchButton").keyup(function(){
window.clearTimeout(_timerId);
_timerId = window.setTimeout(function() {
...perform actual search...
}, 170);
}).keydown(function(){
window.clearTimeout(_timerId);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment