[javascript] How to detect pressing Enter on keyboard using jQuery?

I would like to detect whether the user has pressed Enter using jQuery.

How is this possible? Does it require a plugin?

EDIT: It looks like I need to use the keypress() method.

I wanted to know if anyone knows if there are browser issues with that command - like are there any browser compatibility issues I should know about?

This question is related to javascript jquery keyboard-events enter jquery-events

The answer is


The whole point of jQuery is that you don't have to worry about browser differences. I am pretty sure you can safely go with enter being 13 in all browsers. So with that in mind, you can do this:

$(document).on('keypress',function(e) {
    if(e.which == 13) {
        alert('You pressed enter!');
    }
});

Similar questions with javascript tag:

Similar questions with jquery tag:

Similar questions with keyboard-events tag:

Similar questions with enter tag:

Similar questions with jquery-events tag: