Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to take keyboard input in javascript , where arrow keys when pressed will result in the change in shape of a particular shape . How do I take the input of any of the keys in javascript?

share|improve this question
1  
Is this to be done in a browser? If so you can capture keyboard events. – Slomojo Dec 11 '10 at 11:40
1  
yeah on a browser – Hick Dec 11 '10 at 11:41

2 Answers

up vote 6 down vote accepted

You can do this by registering an event handler on the document or any element you want to observe keystrokes on and examine the key related properties of the event object.

Example that works in FF and Webkit-based browsers:

document.addEventListener('keydown', function(event) {
    if(event.keyCode == 37) {
        alert('Left was pressed');
    }
    else if(event.keyCode == 39) {
        alert('Right was pressed');
    }
});

DEMO

share|improve this answer
The IE equivalent would be a good thing to add. – Tim Down Dec 11 '10 at 23:49
theres anything that I can do to capture Backspace but prevent browser to "Go Back" ? – Vitim.us Nov 14 '11 at 18:54
@Vitimtk: Sorry, I don't really have time now, but have a look at these questions: stackoverflow.com/… – Felix Kling Nov 14 '11 at 19:38

If you are doing this in a browser, you can capture keyboard events.

  • keydown
  • keypress
  • keyup

Can all be listened to on HTML nodes in most browsers.

Webkit also supports...

  • textInput

See for more details .. http://unixpapa.com/js/key.html

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.