Skip to content

Instantly share code, notes, and snippets.

@ryanve
Created August 12, 2016 01:28
Show Gist options
  • Select an option

  • Save ryanve/4b170c5f25f84ee279feb198224f4355 to your computer and use it in GitHub Desktop.

Select an option

Save ryanve/4b170c5f25f84ee279feb198224f4355 to your computer and use it in GitHub Desktop.
remove comment nodes from the DOM
$(':not(iframe)').contents().each(function() {
8 == this.nodeType && $(this).remove()
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment