I want to create a html select tag
where first option is a input
element but it is not working.
<select name="cars" id="cars">
<option ><input type="text"></option>
<option >Saab</option>
<option >Opel</option>
</select>
I want to take input from the first option and based on the input change the other option. But can not add the first option as input field. How do i do this?