Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to get the subtotal of items that the user appends to the shopping cart, but can't seem to get it to work.

Basically I have a list of items, on which they have an add to cart button which is linked to a jquery function that appends some html to the shopping cart:

$('#object01').click(function(){
    if ($('#slideShoppingCart').is(":hidden")) {
    $('#slideShoppingCart').slideToggle(500);   
    $('#objectList').append('<div class="shoppingCartObject"><img src="img/leather-backpack-cart.jpg" width="75" height="75"><div class="cartObjectInfo"><h1 class="cartTitle">Gentleman&#39;s Satchel</h1><div class="closeCartObject">x</div><h2 class="cartDescription">Chestnut Leather</h2><h3 class="quantity">QTY. 1</h3><h3 class="cartPrice">£<span class="price">300</span></h3></div></div>')
    } else {
        $('#objectList').append('<div class="shoppingCartObject"><img src="img/leather-backpack-cart.jpg" width="75" height="75"><div class="cartObjectInfo"><h1 class="cartTitle">Gentleman&#39;s Satchel</h1><div class="closeCartObject">x</div><h2 class="cartDescription">Chestnut Leather</h2><h3 class="quantity">QTY. 1</h3><h3        class="cartPrice">£<span class="price">300</span></h3></div></div>')
    }
    });
    $('.closeCartObject').live('click', function() {
    $(this).parent().parent().remove();

    return false;
});

In which I have the price wrapped in a span with a class called price. I then have a span in my shopping cart with an id of total.

I have this function to calculate the price, which doesn't seem to work.

$(document).ready(function getTotal(){
var total = 0;
$('.price').each(function(){
    total += parseFloat(this.innerHTML)
});
$('#total').text(total);
getTotal();
});
share|improve this question
Please define "doesn't seem to work". – Lee Taylor Nov 16 '12 at 0:09
On chrome the total stays at 0, on firefox there is simple no digit in the #total span – Maxim Siebert Nov 16 '12 at 0:11
What happens when you run your code with Chrome's developer tools on show? Do you get errors? – Lee Taylor Nov 16 '12 at 0:11
on firebug there is no error, on chrome I seem to get this; which i'm not sure what it means. Uncaught RangeError: Maximum call stack size exceeded – Maxim Siebert Nov 16 '12 at 0:14
Maximum call stack size exceeded, it sounds possible that you have inadvertent recursion. – Lee Taylor Nov 16 '12 at 0:16

3 Answers

It seems like your calculation logic works

var total = 0;
$('.price').each(function(){
    total += parseFloat(this.innerHTML)
});

But the problem is that you are calling the "getTotal()" function inside itself.

Try

$(document).ready(function() {

var getTotal = function(){
  var total = 0;
  $('.price').each(function(){
      total += parseFloat(this.innerHTML);
  });
  return total;
}  

$('#total').text(getTotal());

});
share|improve this answer
For some reason that still doesn't seem to work. :/ I think it has something to do with the shopping cart being empty, which calculates to 0 – Maxim Siebert Nov 16 '12 at 0:50

Try putting your JS in <script defer="defer"> tag, this means it gets run last - its possible your function tries to caclulate before the Dom is totoally finished (this may have only been with earlier version of jQuery though)

Alternatively add a setTimeout to call your sub-total function after a few seconds.

You may also want to add some alerts to your function, make sure the fields its trying to target aere targeted correctly.

Defer: How exactly does <script defer="defer"> work?

setTimeout: https://developer.mozilla.org/en-US/docs/DOM/window.setTimeout

share|improve this answer

Your function:

$(document).ready(function getTotal(){
var total = 0;
$('.price').each(function(){
    total += parseFloat(this.innerHTML)
});
$('#total').text(total);
getTotal();
});

contains a call to getTotal() from getTotal(). You have inadvertent recursion.

EDIT: OK, try this: (it'd be easier if there was a jsfiddle for your code though)

$(document).ready(function ()
{
    var total = 0;
    $('.price').each(function()
    {
        total += parseFloat(this.innerHTML)
    });

    $('#total').text(total);
});
share|improve this answer
how exactly do I fix this, sorry i'm not too sure what that means. I'm still fairly new to jquery – Maxim Siebert Nov 16 '12 at 0:20
Well, why are you calling getTotal() at the end of your function? – Lee Taylor Nov 16 '12 at 0:23
good point, but whether its there or not doesn't seem to make a difference :/ – Maxim Siebert Nov 16 '12 at 0:31
Please look at my edit. – Lee Taylor Nov 16 '12 at 0:35
That seems to have the same effect, I'm assuming the problem is that the cart starts out empty, which gives it the total of 0. – Maxim Siebert Nov 16 '12 at 0:51
show 3 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.