Skip to content

Instantly share code, notes, and snippets.

@malpaso
Created June 23, 2016 00:52
Show Gist options
  • Save malpaso/c82d38e349861d093926a9be00a4a372 to your computer and use it in GitHub Desktop.
Save malpaso/c82d38e349861d093926a9be00a4a372 to your computer and use it in GitHub Desktop.
Prevent form submitting on Enter key (jQuery)
$(function() {
$('#formId').on('keyup keypress', function(e) {
var keyCode = e.keyCode || e.which;
if (keyCode === 13) {
e.preventDefault();
return false;
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment