If you want to prevent the form submit using jquery, then this page helps you to doing this.
jQuery(document).ready(function() {
jQuery(window).keydown(function(event) {
if (event.keyCode == 13) {
event.preventDefault();
return false;
}
});
});
See the Pen jquery prevent enter by key2goal (@key2goal) on CodePen.
- Log in to post comments