Is there a way to place an INPUT field inside select?
<select name="menu_files" class="form-control" >
<option value="new_menu"> <input type="text"></option>
</select>
<datalist> ElementThe datalist element is intended to provide a better mechanism for this concept.
<input type="text" name="example" list="exampleList">
<datalist id="exampleList">
<option value="A">
<option value="B">
</datalist>
For more information, see
<datalist> ElementIf you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With