I currently have a form with some fields and a simple dropdown where you can choose an options from a list of options.
Here's the code of the dropdown:
<select name="typeOfTokens" required="required">
<option value="1">Samsung</option>
<option value="2">Sony</option>
<option value="3">Android</option>
</select>
What I would like to achieve is to let the user search through that list from a text input, I have seen a couple of times a dropdown with a text input at the top. And if there where no matches, then let the user choose whatever he typed, and then take the selected value from the options or whatever is on the text input when submitting the form.
I've seen a couple of dropdown plugins, like "chosen" or "select2" but I didn't find anything really usefull, unless I missed something from the docs.
If anyone could help me out I'll be very gratefull!