Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Title in ComboBox???Is this possible

Status
Not open for further replies.

shawn876

Programmer
Feb 19, 2004
17
US
Hi everyone:
I have a combobox. For my combobox I need a title for each option tag. For example:
If I have three options A, B C
A would be titled Apples
B would be titled Beach
C would be titled Cat.
Something like a caption on each option. I know we can place title tags on <TD>'s is it possible for options????
Thanks
 

This is why OPTIONs have both a value and a text attribute. You specify your "title" in the "text", and your value in the "value":

Code:
<select>
   <option value="a">Apples</option>
   <option value="b">Beach</option>
   <option value="c">Cat</option>
</select>

Hope this helps / clarifies things,
Dan
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top