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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How do I create a Drop-down like IE Address Drop-down

Status
Not open for further replies.

durell

Programmer
Feb 4, 2002
12
US
Guess the subjct says it all....How do I make a drop-down I can drop or enter text.
 
You want to know how to make a select box?
Code:
<form action=&quot;whatever&quot; method=&quot;get&quot;>
<select name=&quot;myselectbox&quot;>
 <option value=&quot;1&quot;>Option 1</option>
 <option value=&quot;fire&quot;>Pyromania</option>
 <option value=&quot;other&quot;>Not Listed</option>
</select>
</form>

For a multi-select, add the word mulitple into the select tag like this:
Code:
<select name=&quot;myselectbox&quot; mulitple>

And I think you mentioned something about being able to dynamically add/modify data in the select?
Try this:
Good luck! -gerrygerry
Go To
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top