Skip to content

Instantly share code, notes, and snippets.

@christianvuerings
Created October 17, 2012 05:22
Show Gist options
  • Save christianvuerings/3903828 to your computer and use it in GitHub Desktop.
Save christianvuerings/3903828 to your computer and use it in GitHub Desktop.
Twitter - Follow the following
// Follow all people that someone follows
// 1. Go to a following URL - https://twitter.com/denbuzze/following
// 2. Run this script:
(function() {
var interval;
var scrollToBottom = function() {
interval = setInterval(function() {
$(document).scrollTop($(document).height());
$('.not-following .follow-button').trigger('click');
}, 500);
};
scrollToBottom();
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment