Skip to content

Instantly share code, notes, and snippets.

@slant
Created December 8, 2012 01:07
Show Gist options
  • Save slant/4237980 to your computer and use it in GitHub Desktop.
Save slant/4237980 to your computer and use it in GitHub Desktop.
Bookmarklet for adding all approval-pending members to a Facebook group (from the See All page)
javascript:var buttons=document.getElementsByClassName('uiButtonText');var add_buttons=new Array;for(var b=0;b<buttons.length;b++){if(buttons[b].innerText=='Add'){add_buttons.push(buttons[b])}};for(var b=0;b<add_buttons.length;b++){add_buttons[b].click()};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment