Is there a way for jQuery to detect that more than one key was pressed at the same time?
Is there any alternative that allows for pressing two keys at the same time to be detected?
|
Is there a way for jQuery to detect that more than one key was pressed at the same time? Is there any alternative that allows for pressing two keys at the same time to be detected? |
||||
|
|
|
In order to detect multiple keys being held down, use the
I've put together a demo here: http://jsfiddle.net/gFcuU/. It's kind of fun, though I noticed my keyboard is only able to detect at most 6 keys. |
|||||||||||
|
|
It depends. For "normal" keys, that means Non- Shift, Ctrl, ALT, (CMD), the answer is no, the event handler will catch/fire in a queue, one after another. For the modifier keys I mentioned above, there is a property on the event object. Example:
Demo: http://www.jsfiddle.net/bM6uY/4/ Other propertys are:
|
|||||||||||||
|
|
Nope. |
|||
|
|