Skip to content

Instantly share code, notes, and snippets.

@Octagon-simon
Created June 4, 2022 13:08
Show Gist options
  • Select an option

  • Save Octagon-simon/50a75ce67d4f0688bb5e793caea30497 to your computer and use it in GitHub Desktop.

Select an option

Save Octagon-simon/50a75ce67d4f0688bb5e793caea30497 to your computer and use it in GitHub Desktop.
//attach event listener
document.querySelector('#inp_search').addEventListener('input', function(){
//store the search query
let value = this.value.trim();
//check if value is not empty
if(value){
}else{
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment