How to Invite All Facebook Friends to An event
We will certainly describe it step by step. Remember to see to it you are making use of Firefox, as it supports JavaScript functions.
How To Invite All Facebook Friends To An Event
Facebook Event Invite Code
Code to invite all pals to a Facebook event at the same time. Again, use Google Chrome to achieve this.
1. Go to your Facebook Event page
2. Click "Share" > "Invite friends".
3. Scroll down to the really bottom of that checklist that simply appeared.
4. Kind "javascript:" into the address bar. (Notice the semicolon after javascript, no quotes).
5. Paste the invite all to event code below right after "javascript:".
6. Wait a few seconds and then struck Send out Invites. All your Facebook good friends are invited to your event.
var inputs = document.getElementsByClassName('_1pu2');for(var i=0;i<inputs.length;i++){ inputs[i].click();
Note: I attempted this and it worked, yet if for some reason it doesn't for you, just let me recognize, I'll update the script. As well as you can only invite as much as 500 individuals daily to an event.
Code Explanation
Because I am a Computer Scientist, I could also briefly clarify what the script does so you know that it is not a virus, but an easy hack.
Below's what the Facebook invite all to like manuscript does:
This line searches for the element called "_ 42ft ..." which happens to be the invite box and lots it to the inputs variable.
var inputs = document.querySelectorAll('a._42ft._4jy3._4jy3._517h._51sy');
This loopholes for all your good friends:
for(var i=0;i<inputs.length;i++)
Click on their respective invite button:
{ inputs[i].click();