parsefloat 2 decimals code example
Example 1: jquery 2 decimal places
var total = 100.525444
var final_total = total.toFixed(2); // 100.52
Example 2: javascript convert string to 2 decimal
var twoPlacedFloat = parseFloat(yourString).toFixed(2)
Example 3: javascript round to 2 decimal places
var subTotal="12.1345";// can also be int, float, string
var subTotalFormatted=parseFloat(subTotal).toFixed(2); //"12.13"