Advertisement
fernandezekiel

SAMPLE

Feb 24th, 2014
312
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. $('[data-index]').keypress(function(e) {
  2. if(e.which == 13) {
  3. e.preventDefault();
  4. currentIndex = $(this).attr('data-index');
  5. $('*[data-index="' + theNextDataIndex + '"]').focus();
  6. }
  7. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement