Skip to content

Instantly share code, notes, and snippets.

@jemgold
Last active August 29, 2015 14:18
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jemgold/494953eb260286fb3691 to your computer and use it in GitHub Desktop.
Save jemgold/494953eb260286fb3691 to your computer and use it in GitHub Desktop.
// https://[my-awesome-team].slack.com/team
$('#active_members .team_list_item').map(function(i, m) {
var name = $('.member_name', m).text().split(' ')
var email = $('a[title^="Email"]', m).text()
return [name, email].join(',')
}).toArray().join('\n');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment