Skip to content

Instantly share code, notes, and snippets.

@balanza
Created October 27, 2015 00:08
Show Gist options
  • Select an option

  • Save balanza/93fde3efc0e279813246 to your computer and use it in GitHub Desktop.

Select an option

Save balanza/93fde3efc0e279813246 to your computer and use it in GitHub Desktop.
//this is the "debounced" search
// it runs after 500ms from its first call, just once in 500ms
var search = _.debounce(function(){
var keyword = document.getElementById('searchbox').value;
doSearch(keyword); //this performs server call and displays results
}, 500);
//this is the keyboard event
document.getElementById('searchbox').addEventListener('keypress', search);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment