Created
August 12, 2016 01:28
-
-
Save ryanve/4b170c5f25f84ee279feb198224f4355 to your computer and use it in GitHub Desktop.
remove comment nodes from the DOM
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $(':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