How to Add All Friends to A Facebook event

How To Add All Friends To A Facebook Event - Facebook close friend invites work to invite your close friends ahead to an occasion or to like a Facebook web page. Regrettably invites through Facebook can end up being a lengthy task, particularly if you need to invite 1500 close friends.

Invite All Friends Facebook Event

We will describe it detailed. Bear in mind to make certain you are making use of Firefox, as it sustains JavaScript functions.

How To Add All Friends To A Facebook Event


Facebook Event Invite Code
Code to invite all friends to a Facebook event at the same time. Once more, utilize Google Chrome to achieve this.

1. Go to your Facebook Event page
2. Click "Share" > "Invite friends".

Invite All Friends Facebook Event

3. Scroll down to the extremely lower of that listing that simply popped up.
4. Kind "javascript:" into the address bar. (Notification the semicolon after javascript, no quotes).
5. Paste the invite all to occasion code below right after "javascript:".
6. Wait a few secs and afterwards hit Send Invites. All your Facebook close friends are invited to your event.

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

Keep in mind: I tried this as well as it functioned, yet if somehow it does not for you, just let me know, I'll upgrade the manuscript. As well as you can only invite approximately 500 people each day to an event.

Code Explanation
Since I am a Computer Researcher, I might as well quickly describe what the script does so you understand that it is not a virus, but a basic hack.

Here's what the Facebook invite all to like script does:

This line searches for the element called "_ 42ft ..." which takes place to be the invite box and also tons it to the inputs variable.

var inputs = document.querySelectorAll('a._42ft._4jy3._4jy3._517h._51sy');

This loops for all your buddies:

for(var i=0;i<inputs.length;i++)

Click their respective invite button:

{ inputs[i].click();