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!

Drop down Menus

Status
Not open for further replies.

JimFlower

Programmer
Jun 21, 2001
42
GB
I want to put a drop down menu on my web site for navigation but I havent got a clue how to do it?

any idias welcome
 
Im not sure about adding links to combo box items but to at
least get yourself a combo box with items try this...

<SELECT>
<OPTION> Item1
<OPTION> Item2
<OPTION> Item3
</SELECT>

From here try reading up on the <OPTION> property:
SelectedIndex, this should return the indexnumber of the
selected item, then depending on the index number have
the code do different stuff
*I could be wrong*
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top