Reputation: 1171
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>
Upvotes: 1
Views: 2803
Reputation: 22251
http://jsfiddle.net/iambriansreed/AyxSE/
This works for infinite select
tags.
jQuery
$('#select-group select').change(function(){
var values = [];
$('#select-group select').each(function(){
if(this.value.length > 0)
values.push(this.value);
});
$('#select-group select optgroup').each(function(){
$(this).after('<option>'+ $(this).attr('label')+'</option>').remove();
});
$('#select-group select option').each(function(){
if($.inArray(this.value, values) > -1 &&
!this.selected)
$(this).after('<optgroup label="'+this.value+'"></optgroup>').remove();
});
});
HTML
<div id="select-group">
<select>
<option value="">Select a ...</option>
<option>A</option>
<option>B</option>
<option>C</option>
<option>D</option>
<option>E</option>
<option>F</option>
<option>G</option>
</select>
<select>
<option value="">Select a ...</option>
<option>A</option>
<option>B</option>
<option>C</option>
<option>D</option>
<option>E</option>
<option>F</option>
<option>G</option>
</select>
</div>
Upvotes: 3