Created
September 26, 2017 15:16
-
-
Save iceteabottle/4d496fd5b3930313a22c965f9f4c6b05 to your computer and use it in GitHub Desktop.
form submit key return #js
This file contains 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
$(window).keydown(function (event) { | |
if (event.keyCode === 13 && $(':input').is(':focus')) { | |
event.preventDefault(); | |
$('#next-step').trigger('click'); | |
return false; | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment