Good day, I have a problem here: is it possible to put an input field into option such as this?

<select>
	<option><input type="text" value="aa"></option>
</select>

(This is not working, any suggestiuon on how to refine it for it to work?)
Any help will be appriciated.

nope, this will not work.
you can create a "select" element with javascript or css3 using div elements and in these you could have input-elements like: for example:

<div id="select">
 <div id="active"><!--active option--></div>
 <div id="dropdown">
  <div class="option"><input type="text" value="aa" /></div>
 </div>
</div>

this has to be designed with css. you could use the :hover effect

-Agarsia

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.