How to Invite All Friends to A Facebook event
We will certainly explain it step by step. Keep in mind to make certain you are making use of Firefox, as it supports JavaScript features.
How To Invite All Friends To A Facebook Event
Facebook Event Invite Code
Code to invite all close friends to a Facebook event at once. Once again, make use of Google Chrome to accomplish this.
1. Go to your Facebook Event page
2. Click on "Share" > "Invite friends".
3. Scroll down to the really bottom of that list that simply turned up.
4. Kind "javascript:" into the address bar. (Notification 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 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 attempted this and also it worked, yet if somehow it doesn't for you, just let me recognize, I'll update the script. And you can only invite approximately 500 individuals daily to an occasion.
Code Explanation
Since I am a Computer Scientist, I could also briefly describe what the script does so you recognize that it is not an infection, but a straightforward hack.
Here's what the Facebook invite all to such as script does:
This line look for the component called "_ 42ft ..." which happens to be the invite box as well as loads 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 on their respective invite button:
{ inputs[i].click();