Skip to content

Instantly share code, notes, and snippets.

@deyvicode
Created December 9, 2020 15:40
Show Gist options
  • Save deyvicode/e02970db48904452b6de0a39b4d357d5 to your computer and use it in GitHub Desktop.
Save deyvicode/e02970db48904452b6de0a39b4d357d5 to your computer and use it in GitHub Desktop.
var delayTimer;
function doSearch(text) {
clearTimeout(delayTimer);
delayTimer = setTimeout(function() {
// Do the ajax stuff
}, 1000); // Will do the ajax stuff after 1000 ms, or 1 s
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment