2013 - How to invite all your facebook friends to your page

If you are a direct visitor to this page, You can check the video tutorial as well.



New working Code:

javascript:
for( i = 1;i<document.getElementsByClassName("_4jy0 _4jy3 _517h _42ft").length;i++)
{
document.getElementsByClassName("_4jy0 _4jy3 _517h _42ft")[i].click();
}


void(0);


Old code :(not working.. )

var inputs = document.getElementsByClassName('uiButton _1sm');
for(var i=0; i<inputs.length;i++) {
    inputs[i].click();
}  



This method explains, How to invite all your friends to your facebook page. Now we know, getting Likes for your page is very hard as well as if you have large friend list, then facebook gives you option to "Invite to your friends". But the problem is; You have to click "Invite" for each friends and this gonna be tedious task. So, that's where comes this easy method to make your life bit easier.




  • Method 1 - Using - Firefox
  • Method 2 - Using - Chrome



Method 1- How to invite all facebook friends using Firefox Browser

1. Login to your facebook account

2. Go to your facebook page. You can select your page from the left panel of facebook home page.

3. You can see "Invite Your Friends to like this page" box, below the page details, photos likes section. There click on "See All" link. 

4. Then You'll see friends list open up on a pop-up window. From the dropdown select "Search All Friends".

5. Go to Firefox Menu,  --> Web Developer --> Web Console

6.  Now, If you have huge friend list.. ( like around 5000) , then this has to be done bit carefully. Otherwise page will stuck. You need to below code, at the web console's type area as shown on the picture.

var inputs = document.getElementsByClassName('uiButton _1sm');
for(var i=0; i<inputs.length;i++) {
    inputs[i].click();
}  




7. And Press Enter. 
Then page will stuck for few seconds, and will send invites automatically. 

8. If you have large friend list, then you can reveal set of friends by dragging scroll down at friend list, and Paste the code and Enter.. and repeat the process. 

Method 2- How to invite all facebook friends using Chrome Browser

1. You can follow all the steps until you open the web console. 

2. Go to Chrome menu - Tools - JavaScript Console

  • Mac users using chrome to press "option + Command + J" - it will open the Chrome java script console. 
  • Windows user can press "CTRL + Shift + J " 

3. Paste the same code and press Enter. 

Post a Comment

0 Comments