Guest User

Untitled

a guest
May 23rd, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. function hide_class(classToHide)
  2. {
  3. if (!document.getElementsByTagName) return;
  4. var anchors = document.getElementsByTagName('*');
  5. for (var i=0; i<anchors.length; i++)
  6. {
  7. var anchor = anchors[i];
  8. if (anchor.getAttribute('class') == classToHide)
  9. anchor.style.display='none';
  10. }
  11. }
  12. window.onload = hide_class('slide');
Add Comment
Please, Sign In to add comment