$("#commentForm").validate({
rules: {
insurance1$ucBuildingInsurance$txtOtherReasonDescription: required
}
});
My current script looks like this to validate a textbox txtOtherReasonDescription.Ideally I would like to replace insurance1$ucBuildingInsurance$txtOtherReasonDescription with $() syntax so the control id is not hardcoded. Is there anyway this can be achieved?
You can add the rule using a selector like this:
Since you’re in ASP.Net, either
id$=orname$=works here, but the concept is set up the valdiation on the form, then attach a rule to the matched elements using.rules("add", rulesToAdd).