Skip to content

Instantly share code, notes, and snippets.

@FokkeZB
Last active October 27, 2015 23:35
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 FokkeZB/720748fc78d4409797b2 to your computer and use it in GitHub Desktop.
Save FokkeZB/720748fc78d4409797b2 to your computer and use it in GitHub Desktop.
Get all GitHub usernames on a GitHub page
// Array
$('.aname').map(function(){return $(this).text();}).get();
// One per line
$('.aname').map(function(){return $(this).text();}).get().join('\n');
// CSV
$('.aname').map(function(){return $(this).text();}).get().join(',');
@nuno
Copy link

nuno commented Oct 27, 2015

$('.member-username') ... now ;)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment