#Easily follow back your twitter followers using jQuery
Make sure that you are signed in twitter.
-
Go to Twitter followers page.
- Go down the scrolling until all followers are loaded.
-
Open Developer Tools.
-
Google Chrome
Mac: Command + Option + J
Windows/Linux: Control + Shift + J
-
Firefox
Mac: Command + Option + K
Windows/Linux: Control + Shift + K
-
Internet Explorer
Why don't you kill yourself?
-
-
Go to Console tab.
-
Paste the code below and press enter:
$('.not-following').each(function(){$(this).find('.js-follow-btn').click();});
Done! Now you follow all the people who followed you.
##What does this code do?
Scans for each element that has the .not-following
class which returns a button related to someone that you do not follow yet.
Performed scanning the elements, a search for the class js-follow-btn
is made and executed a click .click()
on the Follow button.