Skip to content

Instantly share code, notes, and snippets.

@minitech
Created March 4, 2013 20:19
Show Gist options
  • Save minitech/5085265 to your computer and use it in GitHub Desktop.
Save minitech/5085265 to your computer and use it in GitHub Desktop.
Election standings!
$('.vote-count-post').map(function() { return {votes: $(this).text(), name: $(this).closest('tr').find('.user-details > a').text()}; }).get().sort(function(a, b) { return b.votes - a.votes; }).forEach(function(item) { console.log(item); });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment