Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I wire an event to fire if someone presses the letter g?

(Where is the character map for all the letters BTW?)

share|improve this question

8 Answers

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:

http://github.com/jeresig/jquery.hotkeys

share|improve this answer
4  
It supports the meta key, something that is not supported in the js-hotkeys :) Thanks – Lipis Mar 31 '11 at 14:05
4  
Does this support the Apple command key? – Thang Pham May 4 '11 at 18:21
1  
Is this version more up to date: github.com/tzuryby/jquery.hotkeys ? – mxro Aug 31 '12 at 4:24
He has a Nuget package, so I went with this one. – Aligned Mar 27 at 14:07

What about js-hotkeys: The Javascript jQuery Hotkeys Plugin? (demo)

jQuery.Hotkeys plugin lets you easily add and remove handlers for keyboard events anywhere in your code supporting almost any key combination. It takes one line of code to bind/unbind a hot key combination.

Example: Binding 'Ctrl+c'

$(document).bind('keydown', 'ctrl+c', fn);
share|improve this answer
Excellent plugin. The demo link doesn't work. Just go to code.google.com/p/js-hotkeys and download the zip file and run the demo from there. Thanks for the link. – Mario Awad Mar 18 '10 at 9:44
4  
As another answer stated, at this time, jquery.hotkeys has been forked and the most up to date version is here: github.com/jeresig/jquery.hotkeys – David James Oct 27 '10 at 2:32
WOW...that's probably the easiest plugin I've ever used! – d-_-b May 19 '12 at 0:07

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.

Here.

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.

share|improve this answer
1  
Just to make it clear, it works perfectly without jquery too. – Diff.Thinkr Jul 18 '11 at 13:37
    <script type="text/javascript">
        $(document).ready(function(){
            $("#test").keypress(function(e){
                if (e.which == 103) 
                {
                    alert('g'); 
                };
            });
        });
    </script>

    <input type="text" id="test" />

this site says 71 = g but the jQuery code above thought otherwise

Capital G = 71, lowercase is 103

share|improve this answer
5  
Use this! if (e.which == 103 || e.keyCode == 103 || window.event.keyCode == 103) – Trip Aug 18 '10 at 17:32
This only happends when you are focussed on the text field – Michael Koper Oct 4 '11 at 8:34

You could also try the shortKeys jQuery plugin. Usage example:

$(document).shortkeys({
  'g': function () { alert('g'); }
});
share|improve this answer

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

share|improve this answer
1  
This is very nice. I really appreciate the support for handling of sequence of keys. – lorefnon Dec 22 '12 at 18:38

If yo want just simple shortcuts (like 1 letter, for example just the g) you could easily do it without a extra plugin:

$(document).keypress(function(e){
  if(e.charCode == 103){
    // Do your thing
  }
})
share|improve this answer
1  
This doesn't work in IE9. In IE, something like this works: e = e || window.event; var keyCode = e.keyCode || e.which; – Rubistro Aug 4 '12 at 19:32

Here's one to try: http://rikrikrik.com/jquery/shortkeys/

share|improve this answer

Your Answer

 
discard

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