How do I detect if 2 keys are simultaneously pressed? I use keydown and the value 9 to determine Tab, but how do I detect for Shift-Tab?
Thank you in advance.
How do I detect if 2 keys are simultaneously pressed? I use keydown and the value 9 to determine Tab, but how do I detect for Shift-Tab?
Thank you in advance.
test the shiftKey property of the event
This worked, thank you!