Guest User

Untitled

a guest
Apr 25th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. $$('#recents div.FeedItem').each(function(item) {
  2. if (type == undefined)
  3. item.show();
  4. else {
  5. if (item.hasClassName(type))
  6. item.show();
  7. else
  8. item.hide();
  9. }
  10. });
Add Comment
Please, Sign In to add comment