disable entre form code example
Example: jquery disable enter key submit
$(document).on('keyup keypress', 'input', function(e) {
if(e.which == 13) {
e.preventDefault();
return false;
}
});
$(document).on('keyup keypress', 'input', function(e) {
if(e.which == 13) {
e.preventDefault();
return false;
}
});