fires for each success during validation
| name | string | an input name | 
| value | string|number | the current value | 
| result | boolean | the result of validation,true/false | 
myForm.attachEvent("onValidateSuccess", function (name, value, result){
   //your code here
});
			Back to top