Skip to content

Instantly share code, notes, and snippets.

@manjufy
Created March 24, 2018 15:30
Show Gist options
  • Save manjufy/fe8f06c3867a80157196cd836af3047c to your computer and use it in GitHub Desktop.
Save manjufy/fe8f06c3867a80157196cd836af3047c to your computer and use it in GitHub Desktop.
Prevent form submission on enter
$('body').keypress(function (e) {
if(e.which === 13) {
e.preventDefault();
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment