ajsie
ajsie

Reputation: 79676

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

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

Upvotes: 23

Views: 23061

Answers (2)

Sampson
Sampson

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

rahul
rahul

Reputation: 187020

left key - 37

right key - 39

Upvotes: 12

Related Questions