Autocomplete requires you to click twice in iOS after update to 1.11.0

JavascriptJqueryJquery UiIos7Jquery Ui-Autocomplete

Javascript Problem Overview


Using jQuery 2.1.0 and jQuery.ui 1.11.0 Tested in iOS 7. iPhone and iPad Mini. Works on android and regular browsers.

The problem

We recently upgraded from jQuery UI 1.10.0 to 1.11.0 and now, when clicking an item in an autocomplete results list, you only get a hover, you have to click the same element again to get a click event. This used to work fine with version 1.10.0.

(JSFiddle link in comments)

What does not work

using css {cursor: pointer} does not work

using onclick="" does not work

(JSFiddle link in comments)

The weird part

But here comes the fun/weird part. It works in JSFiddle edit view, but not on the JSFiddle "/show" page.

JSFiddles: (type a letter to show results "s" is a good one)

I've been working on this for days, but hadn't been able to reproduce it in JSFiddle before testing only the html view. So now I turn to you. I can't for the life of me figure out why the one page triggers a click event, and the other does not.

I am using the most basic function of jQuery autocomplete. In fact, using the exact same code that is presented on jQuery UI's home page.

The question

So, how do I get autocomplete to work with one click in iOS on the /show page?

(I will post additional links in comments because I don't have 10 rep yet. Unless I don't have enough rep to comment...)

Javascript Solutions


Solution 1 - Javascript

Just a bit later, but

$("#input").autocomplete({
    open: function(event, ui) {
        $('.ui-autocomplete').off('menufocus hover mouseover mouseenter');
    }
});

Solution 2 - Javascript

For some strange reason @onlydimon's answer didn't work for me. It seems like we do need event mouseenter. Following answer worked well for me.

open: function (result) {

            if (navigator.userAgent.match(/(iPod|iPhone|iPad)/)) {
                $('.ui-autocomplete').off('menufocus hover mouseover');
            }
        },

I have added a condition to make sure that it doesn't break in other devices.

Solution 3 - Javascript

Building on onlydimon’s solution:

var input = $("#input")
// Initialize autocomplete
input.autocomplete()
// Retrieve the autocomplete list and remove the mouseenter event
// which seems to trip up iOS Safari
input.autocomplete('widget').off('mouseenter')

I narrowed down the list of events to just jQuery's 'mouseenter' event. Removing just this one fixes the bug for me. Also, no need to remove it every time the list is opened; once is enough.

Solution 4 - Javascript

Wrote a super nasty hack which seems to do the trick for me. Here's what I did.

  1. Check that we're using a touch device (in my case, a variable I have called IAmTouchy.

  2. Listen for a tap (touchstart) on an autocomplete result.

  3. After a set time, check to see if the autocomplete results are still visible. If they are, and an item is focussed, trigger a click on it.

  4. (optional) Try once more... in case the set time wasn't long enough for the element to gain the ui-state-focus class.

         $('.autocompleteContainer').on('touchstart', 'li.ui-menu-item', function(){
    
             var $container = $(this).closest('.autocompleteContainer'),
                 $item = $(this);
    
             //if we haven't closed the result box like we should have, simulate a click on the element they tapped on.
             function fixitifitneedsit() {
                 if ($container.is(':visible') && $item.hasClass('ui-state-focus')) {
    
                     $item.trigger('click');
                     return true; // it needed it
                 }
                 return false; // it didn't
             }
    
             setTimeout(function () {
                 if (!fixitifitneedsit()) {
                     setTimeout(fixitifitneedsit, 600);
                 }
             }, 600);
         });
     
    

Hopefully someone has a nicer solution though!

Solution 5 - Javascript

$.ajax({
 url: '/ajax/xyz.json'
})
.done(function( data ) {
  $('#id').autocomplete({
    source: data,
    open: function( event, ui ) {
        if (navigator.userAgent.match(/(iPod|iPhone|iPad)/)) {
          $('.ui-autocomplete').off('menufocus hover mouseover mouseenter');
        }
    },
    select: function( event, ui ) {
      window.location.href = ui.item.value;
      return false;
    }
  });
});

This worked for me (works on drupal 8 as well). Now one tap on iOS devices redirect to search result page.

Solution 6 - Javascript

Based on Liam Johnston solution, I wrote this one which work for me with autoFocus set to true:

var movedWhildAutocomplete = false;
$(document)
	.on('touchstart', '.ui-autocomplete li.ui-menu-item', function(){
		$(this).trigger('mouseenter');
		movedWhildAutocomplete = false;
	})
	.on('touchmove', '.ui-autocomplete li.ui-menu-item', function(){
		movedWhildAutocomplete = true;
	})
	.on('touchend', '.ui-autocomplete li.ui-menu-item', function(){
		if (!movedWhildAutocomplete) {
			var $el = $(this);
			if ($el.is(':visible') && $el.hasClass('ui-state-focus')) {
				$el.trigger('click');
			}
		}
		movedWhildAutocomplete = false;
	});

Solution 7 - Javascript

Autocomplete widget has some built in events that you can add on to your code... jqueryui

I was having the same problem and finally figured out how to tweek the code and force mobile devices to respond with one click.

Basically for mobile devices (iOs) when you tap on the autocomplete list 'once', it will trigger the "focus" event, if you click once more (2nd click) it will read the event as "select". So in order to force iOs devices to select on one click you have to force it to select on the first click.

$("#input").autocomplete({
  source: yourSourceList,
  focus: function(event, ui) {
    $(this).val(ui.item.value);
    $(".ui-menu").hide(); //you can also console.log(ui.item.value); for the selected widget object
  }
});

Solution 8 - Javascript

Use fastclick.js it will solve this problem. I know this js is used for removing 300ms tap delay but it solved this problem also for me.

  1. Download the minified version of FastClick (alternatively, you can follow the instructions for installing the non-minified version here)

  2. Include the file in your project:

    <script src = "js/fastclick.min.js"></script>
    

  3. Attach the FastClick object to the document after FastClick has been loaded:

    var attachFastClick = Origami.fastclick;

    attachFastClick(document.body);

NOTE: If you try using FastClick the non-minified way, i.e:

<script src = "js/fastclick.js"></script>;

Then use

FastClick.attach(document.body);

but are including the minified file you will receive errors (telling you that FastClick is undefined). If you are using the minified file you must access it through Origami.

Solution 9 - Javascript

you can probably can use the focus event from autocomplete!

focus( event, ui )

$(function() {
  var availableTags = [
    "ActionScript",
    "AppleScript",
    "Asp",
    "BASIC",
    "C",
    "C++",
    "Clojure",
    "COBOL",
    "ColdFusion",
    "Erlang",
    "Fortran",
    "Groovy",
    "Haskell",
    "Java",
    "JavaScript",
    "Lisp",
    "Perl",
    "PHP",
    "Python",
    "Ruby",
    "Scala",
    "Scheme"
  ];

  var selectAction = function(event, ui) {
    //do whatever you want with event and ui objects
    console.log(ui.item)
  }

  $("#tags").autocomplete({
    source: availableTags,
    focus: selectAction,
    select: selectAction
  });
});

<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>

<label for="tags">Tags:</label>
<input id="tags">

Solution 10 - Javascript

Solution from Raphaël Malié is almost perfect, but it needs evt.preventDefault() for touchend, otherwise it will generate a click on a link/button that is under clicked item.

    var movedWhildAutocomplete = false;
    $(document)
        .on('touchstart', '.ui-autocomplete li.ui-menu-item', function(){
            $(this).trigger('mouseenter');
            movedWhildAutocomplete = false;
        })
        .on('touchmove', '.ui-autocomplete li.ui-menu-item', function(){
            movedWhildAutocomplete = true;
        })
        .on('touchend', '.ui-autocomplete li.ui-menu-item', function(evt){
            if (!movedWhildAutocomplete) {
                var $el = $(this);
                if ($el.is(':visible') && $el.hasClass('ui-state-focus')) {
                    evt.preventDefault();
                    $el.trigger('click');
                }
            }
            movedWhildAutocomplete = false;
        });

Solution 11 - Javascript

I´m working with jQuery UI with and cordova, and I have the same problem in the app, my solution for that problem is this:

$('.ui-autocomplete').mouseenter( function( e ){
    e.preventDefault();
    e.stopPropagation();
});

This stop the focus on the selected item.

Solution 12 - Javascript

This code works with autoFocus

$("#input").autocomplete({
	source: ["Test 1", "Test 2", "Test 3", "Test 4", "Test 5"],
	autoFocus: true,
	focus: function(event, ui) {
		if (navigator.userAgent.match(/(iPod|iPhone|iPad)/) && event.bubbles) {
			$(this).data("ui-autocomplete")._trigger("select", "autocompleteselect", {item: ui.item} );
			$(this).autocomplete("close");
		}
		return false;
	},
	select: function(event, ui) {
		$(this).val(ui.item.label);
	}
});

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionSnorre KimView Question on Stackoverflow
Solution 1 - JavascriptonlydimonView Answer on Stackoverflow
Solution 2 - JavascriptSangram NandkhileView Answer on Stackoverflow
Solution 3 - JavascriptfvschView Answer on Stackoverflow
Solution 4 - JavascriptLiam JohnstonView Answer on Stackoverflow
Solution 5 - JavascriptYPatelView Answer on Stackoverflow
Solution 6 - JavascriptRaphaël MaliéView Answer on Stackoverflow
Solution 7 - JavascriptandrewbkilView Answer on Stackoverflow
Solution 8 - JavascriptSwapnil ManView Answer on Stackoverflow
Solution 9 - JavascriptNicoView Answer on Stackoverflow
Solution 10 - JavascriptCRKView Answer on Stackoverflow
Solution 11 - JavascriptJorge MejiaView Answer on Stackoverflow
Solution 12 - Javascriptcby016View Answer on Stackoverflow