Skip to content

Instantly share code, notes, and snippets.

@QuincyLarson
Created October 11, 2014 01:17
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 QuincyLarson/56e5605a7e9525b190f5 to your computer and use it in GitHub Desktop.
Save QuincyLarson/56e5605a7e9525b190f5 to your computer and use it in GitHub Desktop.
When asking a question, Quora only gives you a few "Free to Ask" options at a time. This script will load more and then click all the "Free to Ask" buttons for you.
var counter = 1;
function get_people_to_ask() {
if (counter < 10){
counter++
window.setTimeout(foo, 2000);
$('.pager_next_link').click()
}
}
get_people_to_ask();
$( "a:contains('Free to Ask')" ).each(function() { $(this).click(); });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment