Guest User

Untitled

a guest
Jan 18th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. var allStars = document.querySelectorAll('.svgIcon--star')
  2. allStars.forEach(star => {
  3. //Articles in the body
  4. var articleContainer = star.closest('.extremePostPreview')
  5. if (articleContainer) {
  6. articleContainer.remove()
  7. }
  8. })
Add Comment
Please, Sign In to add comment