Skip to content

Instantly share code, notes, and snippets.

@rck109d
Created May 12, 2015 16:25
Show Gist options
  • Save rck109d/f062f9bc2970b2a7dab9 to your computer and use it in GitHub Desktop.
Save rck109d/f062f9bc2970b2a7dab9 to your computer and use it in GitHub Desktop.
keep only the given selector's children/self/parents on the page
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