Displaying subscripts in Comboboxes

windows

Guest
Hi,<br />
<br />
<br />
I want to have a field in HTML combo box which contains a subscript. I am really confused about how to do that. <br />
To be more clear I want a filed like <br />
"a<sub>x</sub>" format. <br />
<br />
Thanks in advance<br />
prk<!--content-->comboboxes use <select> and <option>, right? try:<br />
<select><br />
<option>a<sub>x</sub></option><br />
<option>a<sub>x</sub></option><br />
<option>a<sub>x</sub></option><br />
</select><br />
i dont see why that wouldnt work, unless the Option tags strips the HTML tags within.<!--content-->you can't<!--content-->Hello ,<br />
<br />
I am trying to run the subscript tag in the options tag, but it does not seem to work here.<br />
<br />
Could you let me know, the workaound for this situation?<br />
<br />
Thanks & Regards,<!--content-->there isn't, you can't put html tags into a option tag.<!--content-->
 
Back
Top