Skip to content

Instantly share code, notes, and snippets.

@iceteabottle
Created September 26, 2017 15:16
Show Gist options
  • Save iceteabottle/4d496fd5b3930313a22c965f9f4c6b05 to your computer and use it in GitHub Desktop.
Save iceteabottle/4d496fd5b3930313a22c965f9f4c6b05 to your computer and use it in GitHub Desktop.
form submit key return #js
$(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