Reputation: 79676
What are the key codes for the right and left arrow keys?
Upvotes: 23
Views: 23061
Reputation: 268324
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.
Upvotes: 38