Make sure that submit event is still bound for regular form submit events. Thanks to Mark Gibson for the fix suggestion.

This commit is contained in:
jeresig 2010-01-11 12:26:28 -05:00
parent d6d5ed4c68
commit 5a0ac24e35

View file

@ -604,6 +604,9 @@ jQuery.event.special.submit = {
return trigger( "submit", this, arguments );
}
});
} else {
return false;
}
},