Skip to content

Instantly share code, notes, and snippets.

@zoonooz
Created August 1, 2014 02:58
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 zoonooz/1c825a62f834f85a4e53 to your computer and use it in GitHub Desktop.
Save zoonooz/1c825a62f834f85a4e53 to your computer and use it in GitHub Desktop.
script to show the sum of revenue in the month. Pass it in console at sell report page
var sum = 0;
$('.mdCMN18Total').each(function(element){
var str = $(this).html();
var money = str.split(" ")[1];
sum += parseInt(money);
});
console.log(sum)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment