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 this script

$('table#preview td.price').each(function(){
var price = parseInt($(this).html());
var total;
if(price == ''){
price = 0;
}
total += price;
alert(total);
});

What it does is get the column that has the class price then supposedly adds it all up.

However, all I get from this code is NaN. I don't get what's wrong with the code.

Please note the script if(price == ''). I've done this because initially there are no contents in the table.

Edit: Here the html

    <table>
    <tr>
    <th>Name</th>
    <th>Price</th>
    </tr>
    <tr>
    <td>pen</td>
    <td class="price>6</td>
    <td>paper</td>
    <td class="price>8</td>    
    </tr>
    </table>
share|improve this question
Could you give us a html example as wel please? – bjornruysen May 22 '12 at 12:50
Could you provide a jsfiddle? – dragon112 May 22 '12 at 12:50
If you're parsing it as an integer, do you even need to do the string comparison? – MrSlayer May 22 '12 at 12:51
could you put price into an alert to see what you are adding? – dragon112 May 22 '12 at 12:52
$(this).html() is html not an integer. try converting var price to number. – Rizstien May 22 '12 at 12:55
show 1 more comment

1 Answer

up vote 7 down vote accepted

Try using the .text() method instead of .html() method, it should hopefully help get rid of the NaN errors. You'll want to declare the total outside the scope of each iteration so it doesn't get reset each time. Try giving this a go, I've simplified it slightly to also include a check against the number price:

var total = 0;
$('table#preview td.price').each(function()
{
    var price = parseInt($(this).text());
    if (!isNaN(price))
    {
        total += price;
    }
});

alert('The total is: ' + total);

Update

Here's a jsFiddle. N.B. .html() should also work.

share|improve this answer
Thanks! Your solution worked. I'll mark this as the correct answer in 5 minutes. The system wont let me do it now. – JohnSmith May 22 '12 at 12:58
@Richard Will you tell me why it is? if we use .text() it will give nan error.. – Learner May 22 '12 at 12:59
@Learner After checking, it appears that .html() works as well :) – Richard May 22 '12 at 13:04

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.