Skip to content

Instantly share code, notes, and snippets.

@willhalling
Created July 25, 2013 08:24
Show Gist options
  • Save willhalling/6077831 to your computer and use it in GitHub Desktop.
Save willhalling/6077831 to your computer and use it in GitHub Desktop.
Disable enter key on form
$('#formID').keypress(function(event){
// prevent enter key action
if (event.keyCode == 10 || event.keyCode == 13) {
event.preventDefault();
// still want to try and submit form when enter key pressed
this.submit();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment