Answers for "how to add select option in input field using html"

11

html form select

<!-- O segundo valor estará selecionado inicialmente -->
<select name="select">
  <option value="valor1">Valor 1</option> 
  <option value="valor2" selected>Valor 2</option>
  <option value="valor3">Valor 3</option>
</select>
Posted by: Guest on May-25-2020
1

input and select box combined

<input type="text" list="cars" />
<datalist id="cars">
  <option>Volvo</option>
  <option>Saab</option>
  <option>Mercedes</option>
  <option>Audi</option>
</datalist>
Posted by: Guest on August-01-2020

Code answers related to "how to add select option in input field using html"

Browse Popular Code Answers by Language