I have n number of dropdownlists with the same options and values.
I want to validate it, that only the unique value could be selected among these n dropdownlists. n is random number.
Example:
I have 3 ddl with these values:
<select>
<option value="apple" selected="yes"> Apple </option>
<option value="carrots"> Carrots </option>
<option value="potatoes"> Potatoes </option>
</select>
and I want to have unique selected values for each dropdownlist, so if you select apples and try to select apples again on another ddl, it changes a previous one to the available value or prompts an alert..