Skip to content

Instantly share code, notes, and snippets.

@thisisnic
Created January 16, 2019 18:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thisisnic/a057d9bf96f65a968d49ebd5c4ced791 to your computer and use it in GitHub Desktop.
Save thisisnic/a057d9bf96f65a968d49ebd5c4ced791 to your computer and use it in GitHub Desktop.
JavaScript for "enter" key when focussed on a text field triggering activation of button
$(document).keyup(function(event) {
if ((event.keyCode == 13) && (document.activeElement.id == "login_password")) {
$("#login_button").click();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment