How to Invite All Friends to event On Facebook

How To Invite All Friends To Event On Facebook - Facebook buddy invites are useful to invite your pals ahead to an event or to such as a Facebook page. Regrettably invites with Facebook can end up being a lengthy work, specifically if you need to invite 1500 pals.

Invite All Friends Facebook Event

We will certainly describe it step by step. Bear in mind to see to it you are utilizing Firefox, as it sustains JavaScript functions.

How To Invite All Friends To Event On Facebook


Facebook Event Invite Code
Code to invite all close friends to a Facebook occasion simultaneously. Once more, use Google Chrome to accomplish this.

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

Invite All Friends Facebook Event

3. Scroll to the very lower of that list that simply appeared.
4. Kind "javascript:" right into the address bar. (Notice the semicolon after javascript, no quotes).
5. Paste the invite all to occasion code listed below right after "javascript:".
6. Wait a few seconds and then hit Send out Invites. All your Facebook pals 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 attempted this as well as it worked, yet if for some reason it doesn't for you, simply let me recognize, I'll upgrade the manuscript. As well as you can only invite up to 500 people per day to an occasion.

Code Explanation
Because I am a Computer system Scientist, I could too quickly explain what the manuscript does so you recognize that it is not a virus, but a straightforward hack.

Below's what the Facebook invite all to such as script does:

This line look for the element called "_ 42ft ..." which happens to be the invite box as well as loads it to the inputs variable.

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

This loops for all your good friends:

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

Click on their respective invite switch:

{ inputs[i].click();