jQuery-Autocomplete icon indicating copy to clipboard operation
jQuery-Autocomplete copied to clipboard

Firefox mobile

Open scottlet opened this issue 11 years ago • 1 comments

Hi,

Keyup events seem to not work in Firefox mobile on Android - the issue is described here: http://stackoverflow.com/questions/14194247/key-event-doesnt-trigger-in-firefox-on-android-when-word-suggestion-is-on Basically, adding an "input" event to the "keyup" event works.

Line 195 from: that.el.on('keyup.autocomplete', function (e) { that.onKeyUp(e); }); to: that.el.on('keyup.autocomplete input.autocomplete', function (e) { that.onKeyUp(e); });

scottlet avatar Oct 19 '14 11:10 scottlet

https://github.com/devbridge/jQuery-Autocomplete/blob/master/dist/jquery.autocomplete.js#L213-L218

I saw both event bind to onKeyup here

cjzcpsyx avatar Aug 21 '17 19:08 cjzcpsyx