How to disable all options
of a combo minus the value selected using JQuery.
As in the image below:
FollowtheHTMLintheimage:
HTML
<!DOCTYPEhtml><html><body><select><optiondisabledvalue="volvo">Volvo</option>
<option disabled value="saab">Saab</option>
<option selected value="opel">Opel</option>
<option disabled value="audi">Audi</option>
</select>
</body>
</html>