Skip to content

Instantly share code, notes, and snippets.

@tahafarooqui
Created May 5, 2017 16:28
Show Gist options
  • Save tahafarooqui/814accedf98a8f77b806bea6ed9987c0 to your computer and use it in GitHub Desktop.
Save tahafarooqui/814accedf98a8f77b806bea6ed9987c0 to your computer and use it in GitHub Desktop.
__cnt__ = 0;
jQuery('.follow-text').each(function(i, ele) {
ele = jQuery(ele);
if (ele.css('display') != 'block') {
//alert('already following:', i);
return;
}
setTimeout(function() {
ele.click();
}, __cnt__++ * 500);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment