Skip to content

Instantly share code, notes, and snippets.

@arsho
Created April 15, 2017 05:44
Show Gist options
  • Save arsho/b01d958580cbe94da61aef4ac4b88d65 to your computer and use it in GitHub Desktop.
Save arsho/b01d958580cbe94da61aef4ac4b88d65 to your computer and use it in GitHub Desktop.
Hide everything except a div using jQuery
$('body > :not(#d_content_inner)').hide(); //hide all nodes directly under the body
$('#d_content_inner').appendTo('body');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment