Reputation: 2708
Android default browser doesn't fire OnKeyUp events on text inputs if user types non-latin characters.
For example http://jsfiddle.net/Hzjhz/. It works for English characters but does not work for Russian and Korean characters.
Are there any ways to avoid the problem?
Upvotes: 6
Views: 897
Reputation: 1
try InputEvent
, it works in default Android browser. don't work in chrome
Upvotes: 0
Reputation: 7708
Try Using onKeyMultiple for non latin IME characters. I have not used this for browser but within the application for some other use-case.
You should try this, if it works I will tell the rationale.
Upvotes: 0
Reputation: 20000
I could confirm the issue in my Nexus S phone running ICS. Even though I don't have a direct answer to this, I could suggest you some alternatives.
Upvotes: 2