What are the key codes for the right and left arrow keys?
very good reference!
weng
2010-02-09 13:35:16
@noname: you are welcome and thanks
Sarfraz
2010-02-09 13:36:14
+2
A:
Left: 37, Right: 39.
Discovery of other keycodes can be done with the following code:
$('body').keyup(function (event) {
console.log(event.keyCode);
});
Which will output the keycode to the console when you press any key.
Jonathan Sampson
2010-02-09 13:37:45