fires when validation has started but is not applied yet
id | string|number | the form id |
myForm.attachEvent("onBeforeValidate", function (id){
// your code here
return true;
});
Returning "false" from the event handler will prevent validation
Back to top