Android Chrome Input Onkeydown
I have reduced this to the minimum code to show this problem. The problem is that this works fine on Chrome on my computer, but on Chrome on my Android, it doesn't work properly. F
Solution 1:
Clear the text on input focus
$('input').val('');
and its better practice to use keyup
event since users tend to drag their fingers on the keyboard you want make sure you get what they intended
Post a Comment for "Android Chrome Input Onkeydown"