Advertisement
Guest User

YV ignore

a guest
Dec 6th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. turhat_ulisijat = ["Tahmatassu"];
  2.  
  3. var x = document.getElementsByClassName("threadauthor");
  4.  
  5. for (var i = 0, alt = false; i < x.length; i++) {
  6.     li = x[i].parentNode;
  7.     if (turhat_ulisijat.includes(x[i].children[0].children[0].getAttribute("alt"))) {
  8.         li.style.display = "none";
  9.         continue;
  10.     }
  11.  
  12.     if (alt) {
  13.         li.setAttribute("class", "alt");
  14.     } else {
  15.         li.removeAttribute("class");
  16.     }
  17.     alt = !alt;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement