Skip to content

Instantly share code, notes, and snippets.

@rsmelo92
Last active February 6, 2018 20:30
Show Gist options
  • Save rsmelo92/29934645b6564c64ccb85cbe6b2743c7 to your computer and use it in GitHub Desktop.
Save rsmelo92/29934645b6564c64ccb85cbe6b2743c7 to your computer and use it in GitHub Desktop.
Enter Key Event jquery
$(‘input’).on(‘keypress’, (event)=> {
if(event.which === 13){
//Do Something
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment