How many options do you have?
You can use radio buttons instead if not many.
If you really need it, what to do if selected?
This?
<form>
<select
onChange="if (this.options[this.selecte
alert('Please select something else'); this.selectedIndex=0;
}">
<option>Please select
<option style="color:gray" disabled="disabled">Disabl
<option>Not Disabled
<option style="color:gray" disabled="disabled">Disabl
</select>
</form>
Main Topics
Browse All Topics





by: mplungjanPosted on 2007-09-14 at 06:18:52ID: 19891133
Never seen that functionality...