Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like a complete list of the JavaScript keycodes. The lists I found whilst searching with google were not complete and only contained the major keys.

share|improve this question
What list? Link. – Jakub Hampl Apr 9 '11 at 6:02
1  
Yes a link would be great! Here are the ones I found: cambiaresearch.com/c4/702b8cd1-e5b0-42e6-83ac-25f0306e3e25/… and webonweboff.com/tips/js/event_key_codes.aspx – Web_Designer Apr 9 '11 at 6:04
So for complete you want like the whole unicode range? You should specify what do you mean by "complete". – Jakub Hampl Apr 9 '11 at 6:10
2  
I do believe that there are a countable number of characters for which JavaScript keycodes are assigned. – Web_Designer Apr 9 '11 at 6:21
6  
Why not create such a table yourself using JavaScript? – pimvdb Apr 9 '11 at 7:12
show 3 more comments

4 Answers

keyCodes are different from the ASCII values. For a complete keyCode reference, see http://unixpapa.com/js/key.html

For example, Numpad numbers have keyCodes 96 - 105, which corresponds to the beginning of lowercase alphabet in ASCII. This could lead to problems in validating numeric input.

share|improve this answer

I needed something like this for a game's control configuration UI, so I compiled a list for the standard US keyboard layout keycodes and mapped them to their respective key names.

Here's a fiddle that contains a map for code -> name and visi versa: http://jsfiddle.net/vWx8V/

If you want to support other key layouts you'll need to modify these maps to accommodate for them separately.

That is unless you were looking for a list of keycode values that included the control characters and other special values that are not (or are rarely) possible to input using a keyboard and may be outside of the scope of the keydown/keypress/keyup events of Javascript. Many of them are control characters or special characters like null (\0) and you most likely won't need them.

Notice that the number of keys on a full keyboard is less than many of the keycode values.

share|improve this answer
This is very helpful, thanks! – dreta Mar 17 at 10:06

Followed @pimvdb's advice, and created my own (it's not a complete solution but it's still helpful):

http://jsbin.com/uyorip/8/quiet#k_38

share|improve this answer

Here are some useful links:

The 2nd column is the keyCode and the html column shows how it will displayed. You can test it here.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.