Skip to content

Instantly share code, notes, and snippets.

@RhinoLu
Created March 15, 2016 09:08
Show Gist options
  • Save RhinoLu/b2975ce16162bc25f9a7 to your computer and use it in GitHub Desktop.
Save RhinoLu/b2975ce16162bc25f9a7 to your computer and use it in GitHub Desktop.
Trigger a button click with JavaScript on the Enter key in a text box
$(".someone>input").keyup(function(event){
if(event.keyCode == 13){
$("#someone").click();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment