Are there alternative methods for customizing an expanded select list using HTML or a jQuery plugin? I am interested in rendering each option in the list with multiple styles, similar to this example where the number is displayed in red:
<select size="12" name="ddlSpecial" id="ddlSpecial">
<option value="1">
<div>Option text <span style="color:Red;">(1)</span></div>
</option>
<option value="2">
<div>Option text <span style="color:Red;">(1)</span></div>
</option>
</select>
The HTML provided above is only compatible with Firefox, as other browsers do not support the styling: