I\'m using ASP .NET MVC 3 with Data Annotations and the jQuery validate plugin.
Is there a way to mark that a certain field (or certain data annotation) should only
If you want to remove validations in MVC5 client-Side you need to do the following:
$("#Email").rules("remove", { "required", "minlength", "email" } });