Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I wanted to invite all my friends to an event on Facebook. This is quite cumbersome so I wrote a little script you can execute from the console (using Firefox or Chrome).

Works as of November 2012.

I post it here so others might find it.

share|improve this question

closed as off topic by Igy, kmp, Anders R. Bystrup, ppeterka, Jon Egerton Jan 23 at 10:47

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

2 Answers

up vote 9 down vote accepted

Execute this from the console (using Firefox or Chrome) when the Invite window is open (with all the checkboxes for your friends).

var inputs = document.getElementsByTagName('input');
  for(var i=0; i < inputs.length; i++) {
    if(inputs[i].type == 'checkbox') {
      if(inputs[i].disabled == false){inputs[i].click()};
    }
  }
share|improve this answer
Thank you for posting this! I just tried on my Mac with Chrome. When Id run the script it would say "undefined" but it did select items, but only those that were visible. – WineGoddess Jan 22 at 15:30
As stated below, you need to make sure all your friends are visible first. – saratis Jan 28 at 8:35

To select ALL your friends, you have initially scroll all the way down to the bottom of your friends page to fully load it, otherwise it will only select those that are initially loaded. Then run the script from the Tools-Web Developer-Web Console page. No issues.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.