How to Add All Friends to A Facebook event - Quick and Easy

How To Add All Friends To A Facebook Event - Ever before asked yourself how you can welcome all your pals to like a page on Facebook? Suppose you're arranging a substantial Task X as well as want to invite everybody you recognize to your Facebook event?
how to invite all friends to a facebook event

How To Add All Friends To A Facebook Event

How To Add All Friends To A Facebook Event


Facebook Event Invite Code
Code to invite all good friends to a Facebook event at once. Once again, 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 down to the really bottom 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 event code below right after "javascript:".
6. Wait a couple of seconds and after that struck Send Invites. All your Facebook 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 and also it worked, but if for one reason or another it doesn't for you, just let me know, I'll update the manuscript. As well as you can just invite up to 500 individuals per day to an event.

Code Explanation
Because I am a Computer system Researcher, I might also briefly explain what the script does so you know that it is not a virus, however a straightforward hack.

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

This line searches for the element called "_ 42ft ..." which occurs to be the invite box and also loads 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 corresponding invite switch:

{ inputs[i].click();