Categories: FacebookTricks

Invite all Facebook Friends to like a Page in a Single Click (Trick)

Created a new page on Facebook but don’t get enough likers? Here is the solution for this. use this simple JavaScript Code to invite all your Facebook friends to like your page in just a single click.

How to invite them all ?

Step 1 :- Open Facebook.com and login to your account.

Step 2 :- Next visit the page that you created.

Step 3 :- Next Click on See all button from the right side of the page

Invite All Facebook Friends to like your page

Step 4 :- After Clicking on it a popup box will appear with the list of your friends, now click Ctrl+Shift+J if you are on Google Chrome or Ctrl+Shift+K for Mozilla Firefox to open Console box and then click on Console tab from it.

Console Box in Google Chrome

Step 5 :- Now paste the below code in console box and hit enter and wait for few seconds.

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

Step 6 :- That’s it, the JavaScript performed its task and invited all your friends to like your page.

If you face any problem then please comment.