Skip to content

Instantly share code, notes, and snippets.

@slave2zeros
Created September 18, 2013 00:34
Show Gist options
  • Save slave2zeros/6602813 to your computer and use it in GitHub Desktop.
Save slave2zeros/6602813 to your computer and use it in GitHub Desktop.
Check all visible users in Facebook invite tool
/*
Scroll to show all friends in invite dialog window. Facebook doesn't load all when the window pops up; they load as you scroll. Press command + option + i on Mac Chrome or Safari browser or Ctrl + shift + i on PC Chrome to show the Web Inspector, then click the console tab. Paste the line below into the console and press enter/return.
*/
var checkable = document.getElementsByName('checkableitems[]'); for(var i=0; i < checkable.length - 1; i++) { checkable[i].click(); }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment