Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have 3 span tags that hold the price for each item and shipping. I need to add the three span tags together to come up with the total price using jQuery. Here is my code:

<div id="relative">
    <div id="absolute">
        Widget 1: <span id="widget_1_price">$99.99</span><br />
        Widget 2: <span id="widget_2_price">$14.99</span><br />
        Shipping Fee: <span id="shipping_price">$10.00</span><br />
        <b>Total: <span id="total_price"></span></b>
    </div>
</div>

I have tried several methods but none seem to work for me.

share|improve this question
1  
Please post what you have tried. – Felix Kling Feb 10 at 17:25

3 Answers

up vote 2 down vote accepted

Loop through the elements and parse the text in them, and add them together:

var sum = 0;
$('#widget_1_price,#widget_2_price,#shipping_price').each(function(){
  sum += parseFloat($(this).text().substr(1));
});
$('#total_price').text('$' + Math.round(sum * 100) / 100);

Demo: http://jsfiddle.net/QTMsE/

share|improve this answer
1  
Yes, though the ideal would be to remove the $ from the span, so the JS is a little less dependent on the specifics of the markup... – lonesomeday Feb 10 at 17:25
1  
Better multiply by 100 before you add the numbers. You know, floating point precision. – Felix Kling Feb 10 at 17:27
Sum.toFixed(2) please! – mplungjan Feb 10 at 17:36
@mplungjan: Rounding works fine. I avoid toFixed because of the various bugs in the implementation in various browsers. – Guffa Feb 10 at 17:51
Which? Worse ones than what sometimes happen when you divide? Hmm stackoverflow.com/questions/5490687/… – mplungjan Feb 10 at 18:02
var val1 = parseFloat($("#widget_1_price").text().substring(1));
var val2 = parseFloat($("#widget_2_price").text().substring(1));
var shipping = parseFloat($("#shipping_price").text().substring(1));

var all = val1 + val2 + shipping;
$("#total_price").text("$"+all);

Try this.

share|improve this answer

Try this:

total = parseFloat($('#widget_1_price').text().slice(1))+
        parseFloat($('#widget_2_price').text().slice(1))+
        parseFloat($('#shipping_price').text().slice(1));

$('#total_price').text('$'+total);
share|improve this answer
updated the answer Thanks for pointing out. – Jai Feb 10 at 17:34

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.