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

前端 未结 12 1200
野趣味
野趣味 2020-12-01 02:41

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

12条回答
  •  感情败类
    2020-12-01 03:26

    Just a bit later, but

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

提交回复
热议问题