How to Invite Everyone to A Facebook event
By
Dany Firman Saputra
—
Saturday, October 12, 2019
—
Invite All Friends Facebook Event
We will certainly describe it detailed. Keep in mind to ensure you are utilizing Firefox, as it supports JavaScript functions.
How To Invite Everyone 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 attain this.
1. Go to your Facebook Event page
2. Click "Share" > "Invite friends".
3. Scroll down to the really bottom of that list that simply appeared.
4. Kind "javascript:" into the address bar. (Notification the semicolon after javascript, no quotes).
5. Paste the invite all to event code listed below right after "javascript:".
6. Wait a couple of seconds and then hit 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 attempted this as well as it functioned, but if for some reason it doesn't for you, simply let me understand, I'll upgrade the script. As well as you can just invite approximately 500 people per day to an occasion.
Code Explanation
Given that I am a Computer Scientist, I may too briefly describe what the manuscript does so you know that it is not an infection, yet a basic hack.
Here's what the Facebook invite all to such as script does:
This line searches for the element called "_ 42ft ..." which happens to be the invite box and also tons it to the inputs variable.
var inputs = document.querySelectorAll('a._42ft._4jy3._4jy3._517h._51sy');
This loopholes for all your friends:
for(var i=0;i<inputs.length;i++)
Click on their respective invite switch:
{ inputs[i].click();