Html Select Drop-Down with an Input Field [Duplicate]
How Can I Implement a Select-Style Drop Down Menu in Html with an Option That Is a Text Input? the Idea Being That Someone Can Either Select from a List of...
How can I implement a select-style drop down menu in HTML with an option that is a text input?
The idea being that someone can either select from a list of predefined options, or input their own option.
You can use input text with "list" attribute, which refers to the datalist of values.
<input type="text" name="city" list="cityname">
<datalist id="cityname">
<option value="Boston">
<option value="Cambridge">
</datalist>
This creates a free text input field that also has a drop-down to select predefined choices. Attribution for example and more information: