Skip to content

Instantly share code, notes, and snippets.

@footedesign
Created February 15, 2013 21:41
Show Gist options
  • Save footedesign/4963760 to your computer and use it in GitHub Desktop.
Save footedesign/4963760 to your computer and use it in GitHub Desktop.
Remove the annoying "You must be signed in to use Quora." message, by appending share=1 to the URL
var url = window.location.href;
if (url.indexOf('?') > -1){
url += "&share=1";
}else{
url += "?share=1";
}
window.location.href = url;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment