Enable/disable asp.net validator controls within a specific “ValidationGroup” with jQuery?

The validator properties aren’t rendered as attributes unfortunately, so I don’t know a good way to select them directly. You can try to iterate the Page_Validators array and filter out the ones you want to work with.

Try:

$.each(Page_Validators, function (index, validator){
   if (validator.validationGroup == "your group here"){

      ValidatorEnable(validator, false);

   }
});

Leave a Comment