Skip to content

Instantly share code, notes, and snippets.

@anshulrgoyal
Last active June 26, 2019 09:31
Show Gist options
  • Save anshulrgoyal/d3fe0e06556249feef09b134d609e86c to your computer and use it in GitHub Desktop.
Save anshulrgoyal/d3fe0e06556249feef09b134d609e86c to your computer and use it in GitHub Desktop.
.input-blocksdfmdks
<input type="text" id="input">
<script>
const el= document.querySelector('#input')
el.addEventListener('change',(e)=>{
console.log(e.target.value);
})
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment