JavaScript keypress event not raised on Android browser

I believe keypress is deprecated now. You can check in the Dom Level 3 Spec. Using keydown or keyup should work. The spec also recommends that you should use beforeinput instead of keypress but I’m not sure what the support of this is.

Leave a Comment