I have a form with id myform and two fields (dates) with date class.
I would like to avoid jquery.validation (unobstrusive jquery validation on ASP .NET MVC3) for these two fields. I tried :
$('#myform').validate({
ignore: ".date"
});
However it doesn’t work, I always have an error (Please enter a valid date.).
I need help please !
Thanks,
Ed
You need
ignoreTitle, according to This Doc.