Created
May 12, 2015 16:25
-
-
Save rck109d/f062f9bc2970b2a7dab9 to your computer and use it in GitHub Desktop.
keep only the given selector's children/self/parents on the page
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
var survivor = '#articleText'; | |
$('*').not($(survivor).children().andSelf().parents().andSelf()).remove(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment