can't tap on item in google autocomplete list on mobile

后端 未结 6 1875
轮回少年
轮回少年 2020-12-04 15:36

I\'m making a mobile-app using Phonegap and HTML. Now I\'m using the google maps/places autocomplete feature. The problem is: if I run it in my browser on my computer everyt

6条回答
  •  夕颜
    夕颜 (楼主)
    2020-12-04 16:20

    worked perfectly for me :

    $(document).on({
        'DOMNodeInserted': function() {
            $('.pac-item, .pac-item span', this).addClass('needsclick');
        }
    }, '.pac-container');
    

    Configuration: Cordova / iOS iphone 5

提交回复
热议问题