Forum Moderators: open
I have a javascript question.
Let's say a user is presented with the following dropdown box and selects teh following item:
<select name="cars">
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="fiat">Fiat</option>
<option value="audi">Audi</option>
</select>
Is it possible for js to delete the unselected item on some event?
Thanks.