Hi,
I have a form where the users can add "name" and "id" fields by clicking on the "Add" button.
The input fields look like this (each pair is a row):
<input name="name_1" id="name_1" /> <input name="id_1" id="id_1" />
<input name="name_2" id="name_2" /> <input name="id_2" id="id_2" />
...
The 'name' and 'id' attributes are dynamically named with the integer increasing in value, by 1, for every new field.
Please can someone help me with validating these fields.
Note: As this is client controlled, I do not know how many rows there will be...
Thanks in advance
Lewilaloupe