HTML select form with option to enter custom value
        Posted  
        
            by 
                Ib33X
            
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Ib33X
        
        
        
        Published on 2011-04-13T13:56:19Z
        Indexed on 
            2014/05/28
            3:27 UTC
        
        
        Read the original article
        Hit count: 242
        
I would like to have input field that users can enter custom text value or choose from drop down, normal select only offers drop down options.
How can it accept custom value for instance ford?
<select>
  <option value="volvo">Volvo</option>
  <option value="saab">Saab</option>
  <option value="mercedes">Mercedes</option>
  <option value="audi">Audi</option>
</select>
Edit: I used this http://bit.wisestamp.com/uncategorized/htmljquery-editable-combo-2/ solution. Also I tried jquery ui combobox and it is not working properly
© Stack Overflow or respective owner