How to Invite All friends to like the Page/Event with a Single Click!

You have created a Facebook page or an event and want to invite all your friends..!!!!And the list of friends is endless…What will you do ??

Invite your friends one by one…I don’t think so…!!!

Today we are going to tell you how you can sent invitation to your friends to like your page/event with a single click which will save our time….!!

We have come up with a script which will save your precious time

Invite All friends to like the Page with a Single Click

So lets get Started!!

1.Click Invite friends on whatever you are inviting people to.
2.In the dropdown next to the search box, click Search All Friends
3. Scroll ALL the way down until names stop loading (I found it easy to click the first name and then hold down the spacebar or Page Down button)

FOR GOOGLE CHROME

1.Press F12 on your keyboard and click the “Console” tab
2. Paste the given below code into the box at the bottom and press enter
3. For large friends list, this may utilize all your resources and will cause the page to freeze and be unresponsive. Just wait a few minutes until all the names get selected.

FOR FIREFOX

 1.Press CTRL + Shift + K
 2. Paste the given below code into the box at the bottom and press enter.
 3. For large friends list, this may utilize all your resources and will cause the page to freeze and be unresponsive. Just wait a few minutes until all the names get selected.

FOR INTERNET EXPLORER

 1.Press F12 on your Keyboard.
 2. Paste the given below code into the box at the bottom and press enter.
 3. For large friends list, this may utilize all your resources and will cause the page to freeze and be unresponsive. Just wait a few minutes until all the names get selected.

CODE:

For EVENTS Copy this code:

javascript:elms=document.getElementsByName("checkableitems[]");for (i=0;i<elms.length;i++){if (elms[i].type="checkbox" )elms[i].click()}

For PAGES Copy this code:

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