Skip to content

Instantly share code, notes, and snippets.

@jakic12
Created December 24, 2019 08:52
Show Gist options
  • Save jakic12/ddc4859e88484da537b475da0ed35bc9 to your computer and use it in GitHub Desktop.
Save jakic12/ddc4859e88484da537b475da0ed35bc9 to your computer and use it in GitHub Desktop.
const top1 = document.getElementsByClassName("comments")[0]
Array.from(document.getElementsByTagName("*")).forEach(d => {
if(!top1.contains(d) && !d.contains(top1) && !(d.localName === "style" || d.localName === "script"|| d.localName === "head" || d.localName === "link")){
d.parentNode.removeChild(d)
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment