I am using jqueryui autocomplete like so:
<input class="recipe_input_display" autocomplete="off">
$( ".recipe_input_display" ).autocomplete({
source: "{% url 'recipe_items' %}",
minLength: 2,
select:function(event,ui) { ....
When I type something into the field on a mobile device, it yields a list of autocompleted options
but then when I select my value from the dropdown it is just highlighted and I have to further select 'done' on my keypad or click a second time on my selection.
The jQuery UI examples are all set up so your choice populates the first time you choose it.
I have looked through their API, but I can't understand what would give that functionality and I don't want to sit around guessing and checking.