So I have a datalist which contains a list of all the people available like this:
<datalist id="available">
<option value="1">Name</option>
<option value="2">Ginger</option>
</datalist>
The issue is when I have the input setup like this:
<input name="persontobechosen" type="text" list="available" placeholder="Bob">
It autocompletes by value, I need value to be sent to the server but the user to start typing what's inbetween the tags.