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

I have two functions. When enter is pressed the functions runs correctly but when escape is pressed it doesn't. What's the correct number for the escape key?

$(document).keypress(function(e) { 
    if (e.which == 13) { $('.save').click(); }    // enter (works as expected)
    if (e.which == 27) { $('.cancel').click(); }  // esc   (does not work)
});
share|improve this question
1  
What are you trying to do? – Josh Stodola Jul 21 '09 at 15:50

9 Answers

up vote 291 down vote accepted

Try with the keyup event:

$(document).keyup(function(e) {
  if (e.keyCode == 13) { $('.save').click(); }     // enter
  if (e.keyCode == 27) { $('.cancel').click(); }   // esc
});
share|improve this answer
18  
This has nothing to do with keyup vs. keypress. To capture ESCAPE, you need to look at e.keyCode as opposed to e.which (which this example happens to do). – dkamins May 12 '10 at 3:31
85  
"This has nothing to do with keyup vs. keypress" - that's incorrect, dkamins. keypress doesn't seem to be handled consistently between browsers (try out the demo at api.jquery.com/keypress in IE vs Chrome vs Firefox -- sometimes it doesn't register, and both 'which' and 'keyCode' vary) whereas keyup is consistent. e.which is the jquery-normalized value, so 'which' or 'keyCode' should both work in keyup. – Jordan Brough May 13 '10 at 3:04
6  
@Jordan Brough - I would like to request you to post your comment as answer so that people read it and understand the actual meaning of your comment! since your comment is as important as the answer explaining – Murtaza Feb 3 '12 at 9:06
2  
keydownwill mimic native behaviour - at least on Windows where pressing ESC or Return in a dialog will trigger the action before the key is released. – thomthom Oct 31 '12 at 13:29
Any idea why i have to use window instead of document? Otherwise the event cant be catched. – YeppThat'sMe Feb 12 at 18:23

Rather than hardcode the keycode values in your function, consider using named constants to better convey your meaning:

var KEYCODE_ENTER = 13;
var KEYCODE_ESC = 27;

$(document).keyup(function(e) {
  if (e.keyCode == KEYCODE_ENTER) { $('.save').click(); } 
  if (e.keyCode == KEYCODE_ESC) { $('.cancel').click(); } 
});

Some browsers (like FireFox, unsure of others) define a global KeyEvent object that exposes these types of constants for you. This SO question shows a nice way of defining that object in other browsers as well.

share|improve this answer
2  
What, 27 doesn't just jump out at you as being the escape key?!? Honestly, this really needs to be done by more people. I call them "magic numbers" and "magic strings." What does 72 mean? Why do you have a very specific and volatile string copy-pasted 300 times in your code base? etc. – vbullinger Aug 13 '12 at 20:26

Try the jEscape plugin (sample usage)

$(document).escape(function() { 
   alert('ESC button pressed'); 
});

or get keycode for cross browser

var code = (e.keyCode ? e.keyCode : e.which);
if (code === 27) { alert('ESC'); }
if (code === 13) { alert('ENTER'); }

maybe you can use switch

var code = (e.keyCode ? e.keyCode : e.which);
switch (code) {
    case 27:
       alert('ESC');
       break;
     case 13:
       alert('ENTER');
       break;
}
share|improve this answer
2  
both your links are dead. – Mike Atlas Apr 5 at 21:12

27 is the code for the escape key. :)

share|improve this answer
1  
I have two functions when enter is press the functions runs correctly but not with escape key.. $(document).keypress(function(e) { if (e.which == 13) { $('.save').click(); } if (e.which == 27) { $('.cancel').click(); } }); – Shishant Jul 21 '09 at 15:43
$(document).keypress(function(e) { y=e.keyCode?e.keyCode:e.which;}); When I alert(y), it alerts 27 in IE and FF. Are you sure there's not something else wrong with your code? – Salty Jul 21 '09 at 15:51

To get the hex code for all the characters: http://asciitable.com/

share|improve this answer
2  
I was gonna say..... I hate that this site is at the top of the search results because it's so damn ugly, but it does convey the necessary information. – Mark Jul 21 '09 at 17:29
also can use 'man ascii' in *nix – gacrux Jul 6 '10 at 0:19
Note that depending on event and browser, key codes do not always match ascii tables. – Alan H. Jan 31 '11 at 23:46
downvote: doesn't answer the question, doesn't even address the question, hex has nothing to do with the question and OP already demonstrated knowledge of esc == 27. – Jeremy May 31 '12 at 6:12

I'm was trying to do the same thing and it was bugging the crap out of me. In firefox, it appears that if you try to do some things when the escape key is pressed, it continues processing the escape key which then cancels whatever you were trying to do. Alert works fine. But in my case, I wanted to go back in the history which did not work. Finally figured out that I had to force the propagation of the event to stop as shown below...

if (keyCode == 27)
{
    history.back();

    if (window.event)
    {
        // IE works fine anyways so this isn't really needed
        e.cancelBubble = true;
        e.returnValue = false;
    }
    else if (e.stopPropagation)
    {
        // In firefox, this is what keeps the escape key from canceling the history.back()
        e.stopPropagation();
        e.preventDefault();
    }

    return (false);
}
share|improve this answer

To find the keycode for any key, use this simple function:

document.keydown = function(evt) {
    console.log(evt.keyCode); //OR alert(evt.keyCode);
}
share|improve this answer

Your code works just fine. It's most likely the window thats not focused. I use a similar function to close iframe boxes etc.

$(document).ready(function(){

    // Set focus
    setTimeout('window.focus()',1000);

});

$(document).keypress(function(e) {

    // Enable esc
    if (e.keyCode == 27) {
      parent.document.getElementById('iframediv').style.display='none';
      parent.document.getElementById('iframe').src='/views/view.empty.black.html';
    }

});
share|improve this answer

I have always used keyup and e.which to catch escape key.

share|improve this answer

Your Answer

 
discard

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

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