Guest User

Untitled

a guest
Apr 22nd, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. function keyboard(action) {
  2. var prev_elem = document.getElementById('lol_' + posicion);
  3.  
  4.  
  5. if (e.keyCode == 74) {
  6. posicion++;
  7. }
  8. else if (e.keyCode == 75) {
  9. posicion--;
  10. }
  11. if (posicion > posts_por_pagina) {
  12. document.location = 'loldome.com/...';
  13. }
  14. else if (posicion < 0) {
  15. return false;
  16. }
  17.  
  18. elem = document.getElementById('lol_' + posicion);
  19. prev_elem.attr('tabIndex', '-1');
  20. elem.attr('tabIndex', '0');
  21. elem.focus();
  22. }
Add Comment
Please, Sign In to add comment