次の選択ボックスがあります。
<select multiple="" style="width:266px;" class="text_boxes" name="photography_type[]" id="photography_type">
<option selected="" value="0" label="General photographer
">General photographer
</option>
<option value="1" label="Editorial photographer/news photographer
">Editorial photographer/news photographer
</option>
<option value="2" label="Photojournalist">Photojournalist
</option>
</select>
以下はIEで動作していません
function removeSelection(id){
$('#photography_type :selected').each(function(i, selected){
$(selected).options[id].selected = false;
});
}
解決策はありますか?