This is about form input objects with same names and unknown number of clones/duplicates such as this one:
<input name="field[]" id="field[]" value="">
using jQuery, I dynamically add copies of the object which theoretically makes it look like this:
<input name="field[]" id="field[]" value="">
<input name="field[]" id="field[]" value="">
<input name="field[]" id="field[]" value="">
<input name="field[]" id="field[]" value="">
... and so one and so forth.
Question: Could you show me do we reference such objects, say for example, with a on-change procedure.
Thanks in advanced.