Skip to content

Instantly share code, notes, and snippets.

@arsho
Last active January 5, 2017 13:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arsho/ff4e7d2a5a9b6cf90150922102b1a04f to your computer and use it in GitHub Desktop.
Save arsho/ff4e7d2a5a9b6cf90150922102b1a04f to your computer and use it in GitHub Desktop.
Hide every tags of a page except one specific ID
$("body>:not(.document)").hide();
$(".document").appendTo("body");
$("body>:not(#questions)").hide();
$("#questions").appendTo("body");
$("body>:not(.quiz-submission)").hide();
$(".quiz-submission").appendTo("body");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment