That does not work. This is what I have:

function confSubmit(form) {
if (confirm("Are you sure you want to submit the form?")) {
   $("#employmentForm").submit();
}else{
   return false;
}

}//End of confSubmit function

The form validates and submits anyway. Notice in the title I indicate
that I am using Validate plugin,

Reply via email to