Guest User

Untitled

a guest
Feb 19th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. function sticky_clicky(list) {
  2. var lis = list.getElementsByTagName('li');
  3. var i = 0;
  4. do
  5. {
  6. lis[i].style.cursor='pointer';
  7. lis[i].addEventListener('click', color_me, false);
  8. i++;
  9. var last = false;
  10. var color_me = function() {
  11.  
  12. if ( !last ) {
  13. this.style.backgroundColor="#ff0000";
  14. } else {
  15. last.style.backgroundColor="";
  16. this.style.backgroundColor="#ff0000";
  17. }
  18. last = this;
  19. }
  20.  
  21. }
  22. while ( i < lis.length )
  23. }
Add Comment
Please, Sign In to add comment