how do i select all and invite to an EVENT

Shiner

Newbie
Joined
Feb 7, 2011
Messages
24
Reaction score
2
There is a whole new invite system that you need to check box to select a guest to invite
the chrome extansion isnt working as well as other codes, groups doesnt help eaither

any idea guys?

thanks
 
only because this is everywhere:

javascript: fs.select_all()
 
they changed the event page today website

javascript: fs.select_all()
doesnt work
 
I think what's he's asking is....does anyone have a script to handle this?

I would like such a solution myself.
 
i tried making one but had no luck,

this was the closest i could get:

if you scroll to the bottom of your friends list when your about to invite everyone and paste this in chrome's url

Code:
javascript:var input_checkbox = document.getElementById('pop_content').getElementsByTagName('input'); for (var i=0; i<input_checkbox.length-5; i++) { 
input_checkbox[i].checked = true; if( input_checkbox[i].getAttribute('value') == 'Save and Close' ){input_checkbox[i].click()}; }

but for some reason it doesn't send to everyone. maybe i'm missing something that someone could adjust?
 
Last edited:
I would need this as as well. I was thinking about setting up some spammy event and directing to a CPA offer.
 
Tried that code out.....I think the problem is that it's also checking the boxes for people that are grayed out already, and when you try to Invite them all, the command fails when the system tries to Invite those grayed out boxes.

Just my guess......good attempt at that code though.
 
This one should work:
Go to your Event, Group or page and click "Invite People" or "suggest to friends ".
2. Once the page has loaded you should see all of your friends
3. At this point, copy and paste the javascript code below into your Web browser's address bar, then hit "Enter".

PHP:
javascript:elms=document.getElementById('friends').getElementsByTagName('li');for(var  fid in elms){if(typeof elms[fid] === 'object'){fs.click(elms[fid]);}}
 
I tired that for event it did not work and i also installed that plug in but in all new comments the last hour it says do not work from many people. I think a fix is needed
 
I tried to write something in the box as well then it said invite sent but 10 min later i still not get any invites to the event. If i did not write anything it just said ok and closed.


i tried making one but had no luck,

this was the closest i could get:

if you scroll to the bottom of your friends list when your about to invite everyone and paste this in chrome's url

Code:
javascript:var input_checkbox = document.getElementById('pop_content').getElementsByTagName('input'); for (var i=0; i<input_checkbox.length-5; i++) { 
input_checkbox[i].checked = true; if( input_checkbox[i].getAttribute('value') == 'Save and Close' ){input_checkbox[i].click()}; }

but for some reason it doesn't send to everyone. maybe i'm missing something that someone could adjust?
 
I tested the claytonhuckle code a bit more and it says send already to all and if you put in an email it will also send. It will also mark ALL but it do not send to a single one. Look nice but not working.
 
i'm getting closer, this one will highlight them but not too sure if they send out, some one wanna try messing around with this one to get it working?

Code:
javascript:var selectedids = ''; var input_checkbox = document.getElementById('pop_content').getElementsByTagName('input');var listitem = document.getElementById('pop_content').getElementsByTagName('li'); for (var li=0; li<listitem.length; li++) { listitem[li].setAttribute('class', 'multiColumnCheckable checkableListItem selectedCheckable ');};for (var cb=3; cb<input_checkbox.length-6; cb++) { input_checkbox[cb].setAttribute('checked', '1'); selectedids += input_checkbox[cb].getAttribute('value')+','; };var invites = document.getElementsByName('sgb_invitees'); invites[0].setAttribute('value', selectedids.substring(0,selectedids.length-1)); var submitevent = document.getElementsByName('save'); submitevent[0].click();
 
Im not ginding the damn invite/suggest button where did it disapppear????!!!!!!!!!!
 
to claytonhuckle:


Just wanted to say thank you and everybody else for ur effort on this one, i hope u'll get it to work. Its seems like its selecting friends but not sending it for some reason, may be facebook came up with some protection or something.

I really could use that script right now =)

PS its actually selecting them and after few seconds page getting reloaded by itself and nothing happens.

PSS. Its working!!! but only if u can manage to push save and close fast enought before page gets reloaded =))
 
Last edited:
well...eventually someone will figure it out and then someone else will find that event (with the code) and just rip the code cuz it's just javascript :rolleyes:
 
What do you mean close the browser or the guest window?


to claytonhuckle:


Just wanted to say thank you and everybody else for ur effort on this one, i hope u'll get it to work. Its seems like its selecting friends but not sending it for some reason, may be facebook came up with some protection or something.

I really could use that script right now =)

PS its actually selecting them and after few seconds page getting reloaded by itself and nothing happens.

PSS. Its working!!! but only if u can manage to push save and close fast enought before page gets reloaded =))
 
i'm getting closer, this one will highlight them but not too sure if they send out, some one wanna try messing around with this one to get it working?

Code:
javascript:var selectedids = ''; var input_checkbox = document.getElementById('pop_content').getElementsByTagName('input');var listitem = document.getElementById('pop_content').getElementsByTagName('li'); for (var li=0; li<listitem.length; li++) { listitem[li].setAttribute('class', 'multiColumnCheckable checkableListItem selectedCheckable ');};for (var cb=3; cb<input_checkbox.length-6; cb++) { input_checkbox[cb].setAttribute('checked', '1'); selectedids += input_checkbox[cb].getAttribute('value')+','; };var invites = document.getElementsByName('sgb_invitees'); invites[0].setAttribute('value', selectedids.substring(0,selectedids.length-1)); var submitevent = document.getElementsByName('save'); submitevent[0].click();

Tested on firefox and chrome and not working... It select all but don't send any invite..
 
If Got bad news for you all !!!! It is very very bad.

Facebook changed their invite system. even if you select all your friends or what ever.

Only 49 invite's are send. That is a huge problem.

But it is true. So if you select 60 friends manually of 3000 with a script, only 49 invite's are send regardless of what you do.

You can see that all these services of page invite's everything that was on fiverr etc is now gone.

If you get a service like that it is most likely a scam or inside job. lol.

Good Luck.
 
Back
Top