Skip to content

Instantly share code, notes, and snippets.

@ikoner
Created July 28, 2017 11:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ikoner/d6310321bd210fcbea18306544062f64 to your computer and use it in GitHub Desktop.
Save ikoner/d6310321bd210fcbea18306544062f64 to your computer and use it in GitHub Desktop.
Disable enter on form submit
function disableEnter(e)
{
e = e || window.event;
var key = e.keyCode || e.charCode;
return key !== 13;
}
<form onkeypress="return disableEnter(event);">
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment