chelvis
12-03-2002, 05:05 PM
I creating a form and it that I want to create a dropdown menu. But at the same time I want to give the user a flexibility to enter something new or select some thing from the dropdown. How can I do this? (like a combo box)
<form>
<select name="country">
<option value="usa">USA</option>
<option value="UK">UK</option>
<option value="canada">Canada</option>
</select>
</form>
Here the user/administrator of the webpage should be able to add a new country or select an existing one for a particular customer.
<form>
<select name="country">
<option value="usa">USA</option>
<option value="UK">UK</option>
<option value="canada">Canada</option>
</select>
</form>
Here the user/administrator of the webpage should be able to add a new country or select an existing one for a particular customer.