, jquery.validate.unobtrusive, , , $("#myform").validate() :
$('#myform').validate().settings.ignore = ".date";
$('#myform').valid();
An unobtrusive plugin invokes validate()when loading a document that sets default options. Then a validator will be created and cached, and any further calls validate()will ignore the new parameters and return the cached validator.
source
share