Skip to content

Instantly share code, notes, and snippets.

@ariofrio
Created January 7, 2014 06:05
Show Gist options
  • Save ariofrio/8295235 to your computer and use it in GitHub Desktop.
Save ariofrio/8295235 to your computer and use it in GitHub Desktop.
Get the first two words of the names of all people in a Facebook Graph Search
var els = document.querySelectorAll("#browse_result_area [data-bt='{\"ct\":\"title\"}'] a");
var ret = ""
for(var i=0; i<els.length; i++) {
ret += /\w+ \w+/.exec(els[i].textContent) + ",";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment