tags:

views:

60

answers:

3

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

+4  A: 

See this please

Sarfraz
very good reference!
weng
@noname: you are welcome and thanks
Sarfraz
+1  A: 

left key - 37

right key - 39

rahul
+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
very nice hack!
weng