Advertisement
Guest User

Untitled

a guest
Sep 28th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. <div>
  2. <a class="link" href="#">Test</a>
  3. </div>
  4. <div>
  5. <input class="final" value="here" />
  6. </div>
  7.  
  8. $('.link').keydown(function (e) {
  9. if (e.which === 123) {
  10. e.preventDefault();
  11. $(this).find('.final').focus();
  12. }
  13. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement