With jQuery, how do I find out which key was pressed when I bind to the keypress event?

$('#searchbox input').bind('keypress', function(e) {});

I want to trigger an submit when ENTER is pressed.

[Update]

Even though I found the (or better: one) answer myself, there seems to be some room for variation ;)

Is there a difference between keyCode and which - especially if I'm just looking for ENTER, which will never be a unicode key?

Do some browsers provide one property and others provide the other one?

link|improve this question

90  
** If anyone has reached this from Google (like I did), know that "keyup" instead of "keypress" works in Firefox, IE, and Chrome. "keypress" apparently only works in Firefox. – Tyler Nov 22 '09 at 3:05
6  
also, "keydown" works better than "keyup" for triggering an event AFTER the key has been pressed (obviously) but this is important if you say want to trigger an event on the SECOND backspace if a textarea is empty – Tyler Nov 22 '09 at 5:39
6  
As for e.keyCode VS e.which... From my tests, Chrome and IE8: the keypress() handler will only get triggered for normal characters (i.e. not Up/Down/Ctrl), and both e.keyCode and e.which will return the ASCII code. In Firefox however, all keys will trigger keypress(), BUT: for normal characters e.which will return the ASCII code and e.keyCode will return 0, and for special characters (e.g. Up/Down/Ctrl) e.keyCode will return the keyboard code, and e.which will return 0. How fun. – jackocnr May 25 '10 at 18:10
feedback

20 Answers

up vote 241 down vote accepted

Actually this is better:

 var code = (e.keyCode ? e.keyCode : e.which);
 if(code == 13) { //Enter keycode
   //Do something
 }
link|improve this answer
114  
var code = e.keyCode || e.which; – Jimmy Nov 19 '08 at 19:20
35  
if ((e.keyCode || e.which) == 13) ? ;) – Kezzer Apr 1 '10 at 15:43
18  
According to a comment further down on this page, jQuery normalizes so that 'which' is defined on the event object every time. So, checking for 'keyCode' should be unnecessary. – Ztyx Jun 22 '10 at 14:58
57  
Why the enormous upvote count? The question is about jQuery, which normalizes this stuff, so there's no need to use anything other than e.which, whichever event you're using. – Tim Down Jan 25 '11 at 12:33
12  
@Tim: Alas, I just tested this with Firefox using api.jquery.com/keypress : when I press <Tab>, e.which isn't set (remains 0), but e.keyCode is (9). See stackoverflow.com/questions/4793233/… why this matters. – Marcel Korpel Jan 25 '11 at 12:37
show 12 more comments
feedback

Try this

$('#searchbox input').bind('keypress', function(e) {
	if(e.keyCode==13){
		// Enter pressed... do anything here...
	}
});
link|improve this answer
2  
I come here just to copy this all the time. I gotta memorize the bind part. – Ryan Sep 1 '11 at 23:38
3  
Hey Ryan, you can use Snippets :) – Vladimir Prudnikov Sep 7 '11 at 10:26
feedback

If you are using jQuery UI you have translations for common key codes. In ui/ui/ui.core.js:

$.ui.keyCode = { 
    ...
    ENTER: 13, 
    ...
};

There's also some translations in tests/simulate/jquery.simulate.js but I could not find any in the core JS library. Mind you, I merely grep'ed the sources. Maybe there is some other way to get rid of these magic numbers.

You can also make use of String.charCodeAt and .fromCharCode:

>>> String.charCodeAt('\r') == 13
true
>>> String.fromCharCode(13) == '\r'
true
link|improve this answer
10  
Correction it's $.ui.keyCode.ENTER not $.keyCode.ENTER -- does work like a charm though thx for the tip! – daniellmb Sep 2 '09 at 19:12
feedback

Given that you are using jQuery, you should absolutely use .which. Yes different browsers set different properties, but jQuery will normalize them and set the .which value in each case. See documetation at http://api.jquery.com/keydown/ it states:

To determine which key was pressed, we can examine the event object that is passed to the handler function. While browsers use differing properties to store this information, jQuery normalizes the .which property so we can reliably use it to retrieve the key code.

link|improve this answer
From what I've seen using event.which and trying to compare to $.ui.keyCode results in uncertain behavior. Specifically the lowercase [L] key's which maps to $.ui.keyCode.NUMPAD_ENTER. Cute. – Danny Jun 14 '10 at 18:26
2  
Do you have a repro that demonstrates this bug? Its preferable to report this to the owners of jQuery rather than try to reimplement their work. – Frank Schwieterman Jan 18 '11 at 20:40
feedback

This is probably the better and comprehensive one!

Really the cross-browser way:

if (!event.which && ((event.charCode || event.charCode === 0) ? event.charCode: event.keyCode)) {
    event.which = event.charCode || event.keyCode;
}
link|improve this answer
1  
This is the real answer. The accepted one will work for some keys (like enter) but will fail for others (like supr that will be mistaken by a .) – cad May 14 '10 at 16:31
8  
This is a direct paste from the jQuery source, and is the code that jQuery uses to normalize the .which event property. – Ian Clelland Jul 7 '10 at 23:08
@Ian Clelland: i can't understand your point, is this working right or not!? lol – aSeptik Nov 9 '10 at 12:06
5  
It does work; I'm sure of it, because jQuery uses exactly that code :) If you already have jQuery available, then just use it -- you don't need to have this in your own code. – Ian Clelland Nov 10 '10 at 18:51
feedback

Checkout this excellent jQuery hotkeys plugin which supports key combinations:

$(document).bind('keydown', 'ctrl+c', fn);
link|improve this answer
feedback
$(document).ready(function(){
    $("#btnSubmit").bind("click",function(){$('#'+'<%=btnUpload.ClientID %>').trigger("click");return false;});
    $("body, input, textarea").keypress(function(e){
        if(e.which==13) $("#btnSubmit").click();
    });
});

Hope this may help you!!!

link|improve this answer
feedback

... this example prevents form submission (regularly the basic intention when capturing keystroke #13):

$('input#search').keypress(function(e) {
  if (e.keyCode == '13') {
     e.preventDefault();
     doSomethingWith($('input#search').val());
   }
});
link|improve this answer
Nice and simple, yet effective 10/10 – Nasir Jan 17 '11 at 12:48
feedback

Okay, I was blind:

e.which

will contain the ASCII code of the key.

See https://developer.mozilla.org/En/DOM/Event.which

link|improve this answer
The link is broken. – Nathan Long Nov 19 '08 at 16:19
That does not work for all browsers, unless using jQuery – Lathan Jul 12 '11 at 14:02
feedback

or you can use this: https://github.com/jeresig/jquery.hotkeys :)

link|improve this answer
7  
Warning: DON'T use the one from google code. The author of jquery submited a patch, that is only on the github repository (and John Resig's fork as well): github.com/tzuryby/jquery.hotkeys. The one from google code misbehaves when binding more than one key event to the same dom node. The new one solves it. – Daniel Ribeiro Aug 29 '10 at 0:58
feedback

Here is an at-length description of the behaviour of various browsers http://unixpapa.com/js/key.html

link|improve this answer
1  
This is absolutely the page that everyone floundering around providing hopeless answers should be reading. – Tim Down Jan 25 '11 at 12:31
feedback

Add hidden submit, not type hidden, just plain submit with style="display:none". Here is an example (removed unnecessary attributes from code).

<form>
  <input type="text">
  <input type="submit" style="display:none">
</form>

it will accept enter key natively, no need for JavaScript, works in every browser.

link|improve this answer
feedback
$(document).bind('keypress', function (e) {
    console.log(e.which);  //or alert(e.which);

});

you should have firbug to see a result in console

link|improve this answer
feedback

if it is in a form-field, you may try something totally different, too:
set the form's action to
< ... action="javascript:someFunction(whatever)" ... >
this is a lot simpler :-)

link|improve this answer
feedback

???

Witch ;)

// Listen to key UP and DOWN
var event2key = {'37':'left', '39':'right', '38':'up', '40':'down', '13':'enter', '27':'esc', '32':'space', '107':'+', '109':'-', '33':'pageUp', '34':'pageDown'},
    e2key = function(e) { return event2key[(e.which || e.keyCode)] || ''; };
    pageKey = function(event) {
        switch(e2key(event)) {
            case 'up': event.preventDefault(); goToScreen(-1); break;
            case 'down': case 'space': event.preventDefault(); goToScreen(1); break;
            case 'left': event.preventDefault(); setZoom(currentZoom - 5.00); break;
            case 'right': event.preventDefault(); setZoom(currentZoom + 5.00); break;
            case 'enter': event.preventDefault(); $('a#top').scrollToMe(); break;
        }
    };

$(document)
    .focus()
    .bind('keydown', pageKey);
link|improve this answer
feedback

According to Kilian's answer:

If only enter key-press is important:

<form action="javascript:alert('Enter');">
<input type=text value="press enter">
</form>
link|improve this answer
feedback

The easiest way that I do is:

$("#element").keydown(function(event) {
    if (event.keyCode == 13) {
        localiza_cep(this.value);
    }
});
link|improve this answer
feedback

I'll just supplement solution code with this line e.preventDefault();. In case of input field of form we don't attend to submit on enter pressed

var code = (e.keyCode ? e.keyCode : e.which);
 if(code == 13) { //Enter keycode
   e.preventDefault();
   //Do something
 }
link|improve this answer
feedback
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script type='text/javascript'>
    var ctrlMode = false; // if true the ctrl key is down
    ///this works
    $(document).keydown(function(e){
    if(e.ctrlKey){
        ctrlMode = true;
    };
    });
    $(document).keyup(function(e){
    ctrlMode = false;
    });
</script>
link|improve this answer
feedback

Try this:

jQuery('#myInput').keypress(function(e) {
    code = e.keyCode ? e.keyCode : e.which;
    if(code.toString() == 13) {
        alert('You pressed enter!');
    }
});
link|improve this answer
15  
you're a necromancer, aren't you? – Gnark Feb 9 '10 at 19:28
feedback

Your Answer

 
or
required, but never shown

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