vertexofvortex

Untitled

May 11th, 2020
5,985
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var item = document.querySelectorAll("#brd-index .main-item"), i = 0;
  2. try {
  3.     do {
  4.         if ((item[i].innerText).includes("[Скрыт]")) {
  5.             item[i].style.display = "none";
  6.         }
  7.         i++;
  8.     } while (item[i] != undefined)
  9. } catch {}
Advertisement
Add Comment
Please, Sign In to add comment