I am using MVC to create forms that are generated at runtime. For validation, I am trying my hand at the jQuery validation library which is very convenient to use. I have th
Just add the ignore rule and define the selector. In this example, the validation will ignore all elements that have the class="ignore"
class="ignore"
$("#myform").validate({ ignore: ".ignore" })