Guest User

Untitled

a guest
Jun 23rd, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. var inbox = document.getElementById(':34');
  2. var inboxList = inbox.children[1].children;
  3.  
  4. function hide() {
  5. for ( let i = 1; i <= inboxList.length; i++ ) {
  6. if ( (i % 3) == 0){
  7. inboxList[i-3].style.display = 'none';
  8. }
  9. }
  10. };
  11.  
  12. hide();
Add Comment
Please, Sign In to add comment