You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The menu should filter as the input's being typed. This is not happening on Firefox for Android:
Bug is because keydown and keyup events aren't firing: Pixabay/JavaScript-autoComplete#71. Replacing the non-firing events with input should fix everything.
The text was updated successfully, but these errors were encountered:
@kittsville ,Your solution works only when the input has some value. Consider, if I want to manipulate something on deleting the input when it has no value. In that case, input won't trigger. What I'm supposed to do then?
The menu should filter as the input's being typed. This is not happening on Firefox for Android:
Bug is because
keydown
andkeyup
events aren't firing: Pixabay/JavaScript-autoComplete#71. Replacing the non-firing events withinput
should fix everything.The text was updated successfully, but these errors were encountered: