Skip to content

Instantly share code, notes, and snippets.

@uzyn
Created July 20, 2012 03:39
Show Gist options
  • Save uzyn/3148497 to your computer and use it in GitHub Desktop.
Save uzyn/3148497 to your computer and use it in GitHub Desktop.
Reveal Quora without logging in

Quora now forces users to log in to simply browse the site or read the discussions.

You can now hide the annoying X-less pop-up with the following bookmarklet:

<a href="javascript:(function(){$('.fb_signup_background').hide();$('.fb_signup_dialog').hide();$('.blurred_answer').css('text-shadow', 'none').css('color', 'inherit');$('.signup_cta_on_answer').hide();})();">Gimme Quora</a>

Just the JavaScript part:

javascript:(function(){$('.fb_signup_background').hide();$('.fb_signup_dialog').hide();$('.blurred_answer').css('text-shadow', 'none').css('color', 'inherit');$('.signup_cta_on_answer').hide();})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment