How can I wire an event to fire if someone presses the letter g?
(Where is the character map for all the letters BTW?)
|
How can I wire an event to fire if someone presses the letter g? (Where is the character map for all the letters BTW?) |
||||
|
|
|
Since this question was originally asked, John Resig (the primary author of jQuery) has forked and improved the js-hotkeys project. His version is available at: |
|||||||||||||||
|
|
What about js-hotkeys: The Javascript jQuery Hotkeys Plugin? (demo)
Example: Binding 'Ctrl+c'
|
|||||||||
|
|
Well there are many ways. But I am guessing you are interested in an advanced implementation. Few days back I was in same search, and I found one. It's good for capturing events from keyboard and you will find the character maps too. And good thing is ... it's jQuery. Enjoy the demo and decide. |
|||||
|
this site says 71 = g but the jQuery code above thought otherwise Capital G = 71, lowercase is 103 |
|||||||
|
|
You could also try the shortKeys jQuery plugin. Usage example:
|
||||
|
|
|
I recently wrote a standalone library for this. It does not require jQuery, but you can use it with jQuery no problem. It's called Mousetrap. You can check it out at http://craig.is/killing/mice |
|||||
|
|
If yo want just simple shortcuts (like 1 letter, for example just the g) you could easily do it without a extra plugin:
|
|||||
|
|
Here's one to try: http://rikrikrik.com/jquery/shortkeys/ |
|||
|
|