I have been scouring the internet for a while now, but I still haven't found an answer. On my website, I have three dropdown menus.
These dropdowns are used for gathering user preferences so that users can control the output of results.
I am wondering if it is possible for a value to be removed from the other two dropdowns if it is selected in one.
For example, if the user selects "movies" in the first dropdown, it should not appear in the others.
Here are my dropdowns:
<select id="pref1select">
<option value="P">Preference One</option>
<option value="M">Movie</option>
<option value="T">Tv</option>
<option value="G">Games</option>
</select>
<select id="pref2select">
<option value="P">Preference Two</option>
<option value="M">Movie</option>
<option value="T">Tv</option>
<option value="G">Games</option>
</select>
<select id="pref3select">
<option value="P">Preference Three</option>
<option value="M">Movie</option>
<option value="T">Tv</option>
<option value="G">Games</option>
</select>