I have a few numbers form my view:
var total = '100.000.559,99';
var paymentOne = '560';
var paymentTwo = '99.999.999,99';
I change my paymentOne, so I want to recount them. I wrap all the numbers in: parseFloat, but my 100.000.559,99
will be 100
. So that wont works..
So my question is, how can I use them for math?