Skip to content

Instantly share code, notes, and snippets.

@windmillium
Created February 3, 2014 22:46
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 windmillium/8794029 to your computer and use it in GitHub Desktop.
Save windmillium/8794029 to your computer and use it in GitHub Desktop.
Count total money you've pledged on kickstarter projects, run this on your backer history page.
total = 0;
$.each($('.money'), function() {
total += parseInt(this.innerText.substring(1));
});
console.log(total);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment