Advertisement
AlexanderNorup

Facebook get the people online

Jun 5th, 2016
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //Run on facebook.com with jQuery!
  2. var count = 0;
  3. var msg = "Facebook status:\n\n";
  4. $(".sp_F-nn5m7PDrH").parent().parent().parent().children("._55lr").each(function(){
  5.     count++;
  6.     msg = msg + $(this).text() + " is currently online!\n";
  7. });
  8. msg = msg + "\nThere were " + count + " people online";
  9. alert(msg);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement