jQuery-Autocomplete
jQuery-Autocomplete copied to clipboard
Firefox mobile
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); });
https://github.com/devbridge/jQuery-Autocomplete/blob/master/dist/jquery.autocomplete.js#L213-L218
I saw both event bind to onKeyup here