23

What are the key codes for the right and left arrow keys?

mikemaccana
  • 110,530
  • 99
  • 389
  • 494
ajsie
  • 77,632
  • 106
  • 276
  • 381

2 Answers2

38

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.

Sampson
  • 265,109
  • 74
  • 539
  • 565
11

left key - 37

right key - 39

rahul
  • 184,426
  • 49
  • 232
  • 263