Skip to content

Instantly share code, notes, and snippets.

@jee1mr
Created November 26, 2014 11:24
Show Gist options
  • Save jee1mr/9c98cb9a31856fdd4fe3 to your computer and use it in GitHub Desktop.
Save jee1mr/9c98cb9a31856fdd4fe3 to your computer and use it in GitHub Desktop.
Paste this on your browser developer console and hit enter. You can continue reading quora answers without any hassle
var divs = document.getElementsByTagName("div");
var x = []
for(var i=0;i<divs.length;i++){
if(divs[i].id.match(/.*modal_signup_wrapper/i)){
x=divs[i].id.match(/.*modal_signup_wrapper/i);
}
}
document.getElementById(x[0]).hidden=true;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment