Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am babrath on github.
  • I am babrath (https://keybase.io/babrath) on keybase.
  • I have a public key ASClSPD8JcSHumd5TmtFXZf7FMJlzI0fO7GPQH7tTGXoQQo

To claim this, I am signing this object:

@babrath
babrath / fb_delete_allgroupmembers.js
Last active December 18, 2015 07:00 — forked from adriaanm/fb_delete_allgroupmembers.js
Some javascript code that allows you to automatically delete all members from a facebook group.
// first go to https://www.facebook.com/groups/XXXX/members/
// then paste this in the javascript console
deleteAll = [];
deleteAll.elms = [];
deleteAll.canClick = function (el) {
return (typeof el != 'undefined') && (typeof el.click != 'undefined');
}
deleteAll.load = function() {