Skip to main content

New Code to invite all friends to a event/page 2014

For Earning from facebook you need to build up social media marketing. That's why you need to invite your friends to like pages or join any event. But it's difficult to invite one by one. that's why you should use some JavaScript. (What is JavaScript?) JavaScript will enable you to invite all your friends in one click.

NEW METHOD: WORKING AND VERY EFFICIENT!

Instructions:
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)
4.

For EVENTS Copy this code:

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:
Code:
javascript:var inputs = document.getElementsByClassName('uiButton _1sm'); 
 for(var i=0; i<inputs.length;i++) { 
 inputs[i].click(); 
 }
For Chrome:
5. Press F12 on your keyboard and click the "Console" tab
6. Paste the code into the box at the bottom and press enter
7. 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:
5. Press CTRL + Shift + K
6. Paste the code CTRL + V into the box at the bottom and press enter.
7. 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:
5. Press F12 on your keyboard
6. Click the "Console" tab
7. Paste the code into the box at the bottom and press enter.
8. 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.

Enjoy

Comments