Question

Guys I got a text box wherein users may enter valid decimal numbers.

And later I have to do calculations with this decimal number without rounding it.

Currently I am working as

 var pricePerItemExVat = Math.round($("#InnerCaseWsp").val()) / Math.round($("#InnerCaseItemSellUnit").val());

How do I do the same without rounding the number ?

Was it helpful?

Solution

It looks like you used Math.round to get numbers from strings.

Just parse the strings to numbers using parseFloat :

var pricePerItemExVat = parseFloat($("#InnerCaseWsp").val()) / parseFloat($("#InnerCaseItemSellUnit").val());
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top