Skip to content

Instantly share code, notes, and snippets.

@milushov
Created October 7, 2012 22:47
Show Gist options
  • Save milushov/3849852 to your computer and use it in GitHub Desktop.
Save milushov/3849852 to your computer and use it in GitHub Desktop.
lol
counter = 0;
$('#desc-show p').each( function(i,val){
var str = $(val).text();
str = str.split('-')[1];
if(typeof(str) == 'string') {
str = str.split(' ')[1];
counter += parseInt( str );
console.log(str);
}
});
counter;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment