Hi,
I'm working on handling the multiple key presses with jQuery.
I have two handlers: 1. keyDownHandler 2. keyUpHandler
keyDownHandler detects if the certain key has been pressed, if yes it sets a certain boolean value to true and carries on with the processing.
keyUpHandler resets the boolean value to false.
All this is required for me to find out if the user has pressed two or three key simultaneously. What I have found is that the keyUpHandler doesn't fire off sometimes and I can't figure out why.
Any ideas?