vote up 5 vote down star
3

Hi,

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

(where is the character map for all the letters btw?)

flag

4 Answers

vote up 1 vote down

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

$(document).shortkeys({
  'U': function () { alert('g'); }
});
link|flag
vote up 5 vote down

What about this one? (demo)

link|flag
vote up 4 vote down
    <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

link|flag
vote up 7 vote down

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.

Its good to capture events from keyboard... and you will find the character maps too. And good thing is ... its jquery.

Enjoy the demo and decide.

link|flag

Your Answer

Get an OpenID
or

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