Skip to content

Instantly share code, notes, and snippets.

@gmilby
Forked from rmurphey/gist:1139984
Created July 14, 2012 01:12
Show Gist options
  • Save gmilby/3108630 to your computer and use it in GitHub Desktop.
Save gmilby/3108630 to your computer and use it in GitHub Desktop.
var users = '';
$('.js-comment-container').each(function() {
var c = $(this),
author = c.find('.author .author a').text(),
body = c.find('.content-body').text(),
words = body.split(' ').length;
while (words--){
users += author + ' ';
}
})
console.log(users);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment