I have the following html structure.
<form id="inner" name="dummy">
...
<input type="text" name="set[0][0][xy]" />
<input type="text" name="set[0][1]" />
<input type="text" name="set[1][axy]" />
<input type="text" name="set[2][asxy]" />
<input type="text" name="set[2][1][xdsay]" />
<input type="text" name="set[2][2][xasdy]" />
...
</form>
I need to send the fields only with name="set[....]" by ajax. And the depth of the multidimensional array is changing.
Any idea?
ajaxtag but no ajax code.