OnKeyPress is not being called in android webview... My Html code is simple
<input type="number" onkeypress="myFunc()"/>
function myFunc(){
alert(fired up!);
}
All the other keyevents i.e keyup, keydown are working.
OnKeyPress is not being called in android webview... My Html code is simple
<input type="number" onkeypress="myFunc()"/>
function myFunc(){
alert(fired up!);
}
All the other keyevents i.e keyup, keydown are working.
Android Webview really doesn't fire onkeypress
event (even on newer versions of Android).
One posible solution is to replace it with onkeyup
or onkeydown
, like this:
<input type="number" onkeyup="myFunc()"/>
function myFunc(){
alert(fired up!);
}