I have an order form on which I use the jQuery Calculation Plugin to sum up the total.
This summing up works fine, yet there is a problem with the produced 'sum'. In the sum I wish to replace any dot with a comma.
The basis of the code is;
function ($this) {
var sum = $this.sum();
$("#totaal").html("€ " + sum2);
}
Using a .replace() directly on the var sum doesn't work (referenced function not available on object). I have also tried this (but without effect);
var sum2 = sum.toString().replace(',', '.');
As I'm kind of new to jQuery I'm pretty much stuck now, could anyone point me in the right direction?