[wd_asp elements=’search’ ratio=’100%’ id=1]

After submitting form and prevent submit

26th September 2013

Jquery - Forms-Posting

jquery icon

This code will do something after submitting form1

This code will STOP/PREVENT a form Submitting

This code will stop the enter key being used to submit a form.
$(document).ready(function() {
$(window).keydown(function(event){
if(event.keyCode == 13) {
event.preventDefault();
return false;
}
});
});

Submit with a normal button, NOT a submit button

First name:

Last name: