Comment on Whatthekeycode.com - quickly find a js keycode for any keyComments−TomGullen14yNice! But shift-key doesn't work. For example if I want to get the code for +−LaRakel14yThose are two keys. Key codes are not character codes. Keycodes don't change if you switch to another keyboard layout.Key combinations don't have separate codes.In code you could listen for keydown on the code for shift, and then for the code for the other key.−TomGullen14yDoh! Thank you!
Comments
Nice! But shift-key doesn't work. For example if I want to get the code for +
Those are two keys. Key codes are not character codes. Keycodes don't change if you switch to another keyboard layout.
Key combinations don't have separate codes.
In code you could listen for keydown on the code for shift, and then for the code for the other key.
Doh! Thank you!