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?
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.
|
|
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:
|
|||||||
|
|
If you are doing this in a browser, you can capture keyboard events.
Can all be listened to on HTML nodes in most browsers. Webkit also supports...
See for more details .. http://unixpapa.com/js/key.html |
|||
|
|
