Skip to content

Instantly share code, notes, and snippets.

@nachoal
Created February 12, 2015 21:35
Show Gist options
  • Save nachoal/acc8513254ebc358b643 to your computer and use it in GitHub Desktop.
Save nachoal/acc8513254ebc358b643 to your computer and use it in GitHub Desktop.
javascript:
var data="";
e=document.getElementsByClassName("FriendRequestOutgoing");
for(var i=0; i<e.length; i++)
{
v=e[i].getAttribute("data-profileid");
if(v) data+=v+"\n"
}
document.body.innerHTML= "<textarea>"+ data +"</textarea>";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment