Created
February 3, 2014 22:46
-
-
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.
This file contains 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
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