1
I am breaking my head to try to make the code below understand that the value of DIV should be respected the comma (Ex.: 1,20cm) in which would be:
div1(in centimetres) X div2(in centimetres) = RESULTADO1
RESULTADO1 X 140(square metre value) = VALUE IN R CURRENCY$
I can’t see the error no matter how lay...
*EDITED
I adapted to my need but still Jquery does not recognize the unit of measure in centimeters...
Place: Height = 1.90 He disregards ".90"
If I put: Height = 190 It gives an exorbitant result
Why don’t you use
parseFloat(suaStringAqui).toFixed(2)
?– user86792