javascript - jQuery validator: How to validate array of arrays of inputs -
so have set of inputs , grouped them in this:
<input name="attribute_id[10][]> <input name="attribute_id[20][]> and on. want use jquery validation plugin make sure each value has maxlength of let's 1024. how can write validation rule apply on values? far i've tried attribute_id[*][], attribute_id[][], attribute_id[] (don't ask last one, trying everything). none of them worked.
Comments
Post a Comment