edit box with a drop down list

Solutions on MaxInterview for edit box with a drop down list by the best coders in the world

showing results for - "edit box with a drop down list"
Corra
08 May 2018
1<input type="text" name="product" list="productName"/>
2<datalist id="productName">
3    <option value="Pen">Pen</option>
4    <option value="Pencil">Pencil</option>
5    <option value="Paper">Paper</option>
6</datalist>