Is there a way to place an INPUT field inside select?
You can do something like this:
Link for to: JsFiddle
Html:
Text 1 Text 2
JS:
$(document).ready(function(){ $( "input" ).keyup(function() { var value = $( this ).val(); $( "p" ).text( value ); $('#text1').text(value); }) .keyup(); })