Skip to content

Instantly share code, notes, and snippets.

@davidsonfellipe
Created April 23, 2014 00:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davidsonfellipe/11199413 to your computer and use it in GitHub Desktop.
Save davidsonfellipe/11199413 to your computer and use it in GitHub Desktop.
Get all friends who canceled facebook account
// go to https://www.facebook.com/YOURPROFILE/friends
var xx = document.querySelectorAll('.fsl.fwb.fcb a')
for (var i = 0; i<xx.length; i++){
if(xx[i].href === 'https://www.facebook.com/YOURPROFILE/friends#') {
console.log(xx[i].innerHTML);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment