Hi,
This seems like a pretty simple concept. I want my <Select> options to have headers. When the user clicks on it, I don't want anything to happen (for example, I don't want the heading to be selectable.)
Here's how I thought it should be done, but so far, no dice.
Code:
<select>
<b>Heading A </b>
<option>Option A1</option>
<option>Option A2</option>
<option selected="selected">Option A3</option>
<b>Heading B</b>
<option>Option B1</option>
<option>Option B2</option>
<option selected="selected">Option B3</option>
</select>
Thanks in advance for any help you can provide.
soho34