Say I have a web application that calls the following jQuery every time a user presses a key in a textarea with an ID of "txt":
$('#txt').keydown(function(e) {
console.log(e.which); // shows the keyCode
console.log(e.shiftKey);
}
On a desktop browser, for characters like (
and 9
, I can distinguish between the two by checking to see if the shift key is held down (with e.shiftKey). However, in Safari for iPad, there is no shift key required to type those characters. So, for example, pressing both (
and 9
on the iPad's keyboard logs "57" in the console for the keyCode. The value logged for e.shiftKey always appears to be false.
How might I be able to reliably distinguish between typing shifted characters on the iPad? Thanks in advance!
You could try using keyPress. at keyDown both 9
and (
have 57 but at keyPress event they have 9 : 57
and ( : 40
.
Hope this helps also a useful link http://notes.ericjiang.com/posts/333
Or use the event.charCode
which will return the ASCII code.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With