Skip to content

Instantly share code, notes, and snippets.

@icetee
Created January 24, 2015 15:10
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 icetee/31ce7658e70c55528ac2 to your computer and use it in GitHub Desktop.
Save icetee/31ce7658e70c55528ac2 to your computer and use it in GitHub Desktop.
Keydown next
$('.inputs').keydown(function (e) {
if (e.which === 13) {
var index = $('.inputs').index(this) + 1;
$('.inputs').eq(index).focus();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment