Skip to content

Instantly share code, notes, and snippets.

@martinrusev
Created September 7, 2016 11:29
Show Gist options
  • Save martinrusev/ef9bf718e446d22ac9292b025a8d1fcf to your computer and use it in GitHub Desktop.
Save martinrusev/ef9bf718e446d22ac9292b025a8d1fcf to your computer and use it in GitHub Desktop.
sum=0;
$('.tabellebg .tarifiert').each(function() {
val = $(this).html();
formatted_val = val.replace(".", "").replace(" kB", "").replace(" ", "");
val_to_int = parseInt(formatted_val);
if(!isNaN(val_to_int)) {
sum +=val_to_int;
}
});
console.log(sum)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment