I have this table and these options in it. I want to do that when I select Binary in the first select list, it will not be automatically selected in the second select list. Friend told me that it can be done in JavaScript but he and I don't know how.
To better understand: if I select an option with value 2 in the first selector, it will not be possible to select it in the second select
so if someone could help me, answer please
<tr>
<td class="center">
<select id="notationoption" name="notation_from">
<option value="2">Binary</option>
<option value="3">Ternary</option>
<option value="4">Quaternary</option>
</select>
</td>
</tr>
<tr>
<td class="center">
<select id="notationoption" name="notation_to">
<option value="2">Binary</option>
<option value="3">Ternary</option>
<option value="4">Quaternary</option>
</select>
</td>
</tr>