I am trying to have 7 dropdown boxes in html. They will all get populated the same data. What I am trying to do is when the first dropdown is selected it would remove the selected item from the next dropdown. So, if you Have Numbers: A,B,C,D,E,F,G,H,I in one dropdown if I select B in the first drop down then in the next dropdown it should only show A,C,D,E,F,G,H,I and so on up to 7 dropdowns. I dont know what would be the best way to approach this in JavaScript or JQuery. Thanks for your help in advance.
<table>
Selected Options: <div id="123"></div>
<tr>
<td class="assessmentHeader" align="left"><U> Diagnosis: - </U><br/> <!---Added code 88898 Created 7 dropdowns for Diagnosis 05/04/2012--->
<!---<font style="visibility:hidden"><textarea name="diagnosis" rows="2" cols="5" disabled="disabled">NULL</textarea></font><br/>--->
Primary : <select name="Primary" onchange="selected(this)">
<option value=""></option>
<cfloop query="DCheck">
<option value="#DCheck.cDescription#" >#DCheck.cDescription#</option></cfloop>
</select> <br/> <br/>
Secondary: <select name="Secondary" onchange="selected(this)">
<option value=""></option>
<cfloop query="DCheck">
<option value="#DCheck.cDescription#">#DCheck.cDescription#</option> </cfloop>
</select> <br><br />
Third : <select name="Third" onchange="selected(this)">
<option value=""></option>
<cfloop query="DCheck">
<option value="#DCheck.cDescription#">#DCheck.cDescription#</option></cfloop>
</select> <br><br/>
Fourth : <select name="Fourth" onchange="selected(this)">
<option value=""></option>
<cfloop query="DCheck">
<option value="#DCheck.cDescription#">#DCheck.cDescription#</option></cfloop>
</select> <br><br/>
Fifth : <select name="Fifth" onchange="selected(this)">
<option value=""></option>
<cfloop query="DCheck">
<option value="#DCheck.cDescription#">#DCheck.cDescription#</option></cfloop>
</select> <br><br/>
Sixth : <select name="Sixth" onchange="selected(this)">
<option value=""></option>
<cfloop query="DCheck">
<option value="#DCheck.cDescription#">#DCheck.cDescription#</option></cfloop>
</select> <br><br/>
Seventh : <select name="Seventh" onchange="selected(this)">
<option value=""></option>
<cfloop query="DCheck">
<option value="#DCheck.cDescription#">#DCheck.cDescription#</option></cfloop>
</select> <br><br />
</td>
</tr>
</table>
http://jsfiddle.net/iambriansreed/AyxSE/
This works for infinite
selecttags.jQuery
HTML