Skip to content

Instantly share code, notes, and snippets.

@CS1000
Created April 2, 2015 10:29
Show Gist options
  • Save CS1000/b452df90cdce9d4ed57c to your computer and use it in GitHub Desktop.
Save CS1000/b452df90cdce9d4ed57c to your computer and use it in GitHub Desktop.
SNIPPET to hide all answers on a StackExchange post, except the one linked to (hash anchor, eg. #id) if exists.
javascript:(function(){$(".answer").each(function(i,n){if(n.id!==('answer'+document.location.hash).replace(/#/,'-'))n.style.display="none"})})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment