You’re not assigning the parsed float back to your value var:
value = parseFloat(value).toFixed(2);
should fix things up.
You’re not assigning the parsed float back to your value var:
value = parseFloat(value).toFixed(2);
should fix things up.