Created
March 15, 2016 09:08
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(".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