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

Popular posts from this blog

Sort a complex associative array in PHP -

vb.net - How to ignore if a cell is empty nothing -

recursion - Can every recursive algorithm be improved with dynamic programming? -