show/hide this revision's text 2 markdown syntax highlighting hates me.

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>
show/hide this revision's text 1

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;
  }
}