Skip to content

Instantly share code, notes, and snippets.

@rzorzal
Created April 2, 2019 15:11
Show Gist options
  • Save rzorzal/1969630b7ea10518ca5e47dde319b62b to your computer and use it in GitHub Desktop.
Save rzorzal/1969630b7ea10518ca5e47dde319b62b to your computer and use it in GitHub Desktop.
let timeOutId;
$('#teste').on('keyup', (evt) => {
if(timeOutId){
clearTimeout(timeOutId);
}
timeOutId = setTimeout( () => {
//executa seu script
}, 300)//tempo de espera em milisec
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment