views:

121

answers:

1

Is it possible to (perhaps with Firebug) or some other method to select ALL your contacts in ONE GO when creating an event on Facebook? How?

+2  A: 

You could try the script below:

javascript:elms=document.getElementById('friends').getElementsByTagName('li');for(var fid in elms){if(typeof elms[fid] === 'object'){fs.click(elms[fid]);}}

Go to your event page click to invite people then paste this code in the URL bar and hit enter.

Martin Beeby
Wow. You are my hero.
RD
For many reasons .. you are my hero too!!!
Daniel Elliott