Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
Which keycode for escape key with jQuery

How to detect escape key press in IE, Firefox and Chrome? Below code works in IE and alerts 27, but in firefox it alerts 0

        $('body').keypress(function(e){
            alert(e.which);
            if(e.which == 27){
                // Close my modal window
            }
        });
share|improve this question
do some browser detection first? – ina Jul 30 '10 at 8:01
1  
I find quirksmode.org always reliable to find out what works in which browser: quirksmode.org/js/keys.html . There you can find that only keyup or keydown in combination with keyCode works in all browsers. – Felix Kling Jul 30 '10 at 8:02

marked as duplicate by Felix Kling, Reigel, Tim Down, sth, Michael Mrozek Jul 30 '10 at 22:45

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

4 Answers

up vote 100 down vote accepted
$(document).keyup(function(e) {

  if (e.keyCode == 27) { <DO YOUR WORK HERE> }   // esc
});

http://stackoverflow.com/questions/1160008/which-keycode-for-escape-key-with-jquery

share|improve this answer
to unbind: $(document).unbind("keyup", keyUpFunc); – Plattsy May 6 at 5:32
To unbind you can also use a namespace on the event, $(document).on('keyup.unique_name', ...) and $(document).unbind('keyup.unique_name') – nness May 13 at 3:32

The keydown event will work fine for Escape and has the benefit of allowing you to use keyCode in all browsers. Also, you need to attach the listener to document rather than the body:

document.onkeydown = function(evt) {
    evt = evt || window.event;
    if (evt.keyCode == 27) {
        alert("Escape");
    }
};
share|improve this answer
Note, you can also add the listener to an <input> element and it will therefore only be triggered when this element has focus. – Mike Feb 19 at 1:14

either use .keydown() or .keyup()...

share|improve this answer
1  
yea, along with document and not with 'body' – Mithun Jul 30 '10 at 8:11
@Mithun correct! – Reigel Jul 30 '10 at 8:15

check for keyCode && which & keyup || keydown

$(document).keydown(function(e){
   var code = e.keyCode ? e.keyCode : e.which;
   alert(code);
});
share|improve this answer
i see this not working, jsfiddle.net/GWJVt just for the escape... seems awkward? – Reigel Jul 30 '10 at 8:06
$(document.body).keypress() is not firing – Mithun Jul 30 '10 at 8:11
@Reigel: indeed, seems not to work properly with keypress. Whatsoever, I can't figure the 'awkward' part. – jAndy Jul 30 '10 at 8:11

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