Skip to content

Instantly share code, notes, and snippets.

@CodHeK
Last active June 11, 2020 08:55
Show Gist options
  • Save CodHeK/98203b1444ad05167c77379fc6deaed5 to your computer and use it in GitHub Desktop.
Save CodHeK/98203b1444ad05167c77379fc6deaed5 to your computer and use it in GitHub Desktop.
const $input = document.getElementById('input');
let INPUT_DEBOUNCE = null;
$input.addEventListener('input', e => {
clearTimeout(INPUT_DEBOUNCE);
$span.textContent = ''; // let's come to this on a later stage, for now pretend it doesn't exist
INPUT_DEBOUNCE = setTimeout(() => main(e), 250);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment