Advertisement
GochiSiyan

get all JNews class

Feb 7th, 2022
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. (function() {
  2. test = new Set();
  3. document.querySelectorAll('[class]').forEach(function(el) {
  4. el.classList.forEach(function(cls) {
  5. (cls.includes('jnews') || cls.includes('jeg')) && test.add(cls);
  6. });
  7. });
  8. console.log(test);
  9. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement