Total fields and add 2 decimal places only if fields have decimals?

152 Views Asked by At

Currently, I have the function:

function TotalAmount(field, container) {
    var total = 0;
    field.each(function () {
        total += $(this).val() * 1;
    });
    container.val(total.toFixed(2));
}

Example(1):
55.00 + 50.00 = 105.00 (this is correct)

Example (2):
This currently returns:
55 + 50 = 105.00

I need it to return 105 instead.

How do I change my functionality to accomplish this?

3

There are 3 best solutions below

1
On

Try

 container.val(total == parseInt(total) ? total : total.toFixed(2));

parseInt

3
On

Try

function TotalAmount(field, container) {
    var total = 0;
    field.each(function () {
        total += $(this).val() * 1;
    });
    container.val(total == parseInt(total) ? total : total.toFixed(2));
}

Demo: Fiddle

0
On

Using modulous operator can solve ur issue:

If (total % 1 != 0)
return total
else 
return total / 100