How to Invite All Friends Facebook event - Quick and Easy

How To Invite All Friends Facebook Event - Ever before asked yourself how you can invite all your close friends to like a web page on Facebook? Suppose you're organizing a huge Job X and intend to invite every person you know to your Facebook event?
how to invite all friends to a facebook event

How To Invite All Friends Facebook Event

How To Invite All Friends Facebook Event


Facebook Event Invite Code
Code to invite all good friends to a Facebook event simultaneously. Again, utilize Google Chrome to achieve this.

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

Invite All Friends Facebook Event

3. Scroll down to the very lower of that checklist that simply turned up.
4. Kind "javascript:" into the address bar. (Notice the semicolon after javascript, no quotes).
5. Paste the invite all to event code listed below right after "javascript:".
6. Wait a couple of secs and afterwards struck Send out Invites. All your Facebook buddies 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 recognize, I'll update the manuscript. And also you can just invite up to 500 people daily to an event.

Code Explanation
Because I am a Computer Scientist, I may also briefly explain what the script does so you know that it is not a virus, but a basic hack.

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

This line searches for the aspect called "_ 42ft ..." which takes place to be the invite box as well as tons it to the inputs variable.

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

This loops for all your pals:

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

Click their corresponding invite button:

{ inputs[i].click();