How to Invite All Friends Facebook event
We will certainly describe it detailed. Remember to ensure you are using Firefox, as it sustains JavaScript functions.
How To Invite All Friends Facebook Event
Facebook Event Invite Code
Code to invite all friends to a Facebook event simultaneously. Once again, use Google Chrome to accomplish this.
1. Go to your Facebook Event page
2. Click on "Share" > "Invite friends".
3. Scroll down to the very lower of that checklist that simply turned up.
4. Kind "javascript:" right into the address bar. (Notice the semicolon after javascript, no quotes).
5. Paste the invite all to occasion code below right after "javascript:".
6. Wait a couple of seconds and then hit Send 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 and it functioned, however if for some reason it does not for you, just let me understand, I'll upgrade the script. And also you can just invite as much as 500 people daily to an event.
Code Explanation
Given that I am a Computer system Scientist, I may as well briefly discuss what the script does so you understand that it is not a virus, yet an easy hack.
Here'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 and tons it to the inputs variable.
var inputs = document.querySelectorAll('a._42ft._4jy3._4jy3._517h._51sy');
This loopholes for all your pals:
for(var i=0;i<inputs.length;i++)
Click their corresponding invite button:
{ inputs[i].click();