Last active
October 27, 2015 23:35
-
-
Save FokkeZB/720748fc78d4409797b2 to your computer and use it in GitHub Desktop.
Get all GitHub usernames on a GitHub page
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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(','); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
$('.member-username') ... now ;)