Skip to content

Instantly share code, notes, and snippets.

@YurePereira
Last active September 1, 2016 15:51
Show Gist options
  • Select an option

  • Save YurePereira/1092371c3f8550db8d777b73389038f4 to your computer and use it in GitHub Desktop.

Select an option

Save YurePereira/1092371c3f8550db8d777b73389038f4 to your computer and use it in GitHub Desktop.
Capturing enter key in jQuery
//With ternary operator:
$(document).keypress(function(e){
var keycode = e.keyCode ? e.keyCode : e.which;
if(keycode === 13){
//Code action here.
}
});
//Or with bitwise:
$(document).keypress(function(e) {
var keycode = e.keyCode || e.which;
if(keycode === 13) {
//Code action here.
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment