if the validation is successful, then disable the button. if it's not, then don't.
<form onsubmit="return validate(this);">...</form>
function validate(form) {
// perform validation here
if (isValid) {
form.mySubmitButton.disabled = true;
return true;
} else {
return false;
}
}
<form onsubmit="return validate(this);">...</form>
