Due to the inaccurate nature of the floating point values ββ(this is not a JavaScript error) you need to be more specific, i.e.:
$('p.price').text(function (i, v) { return (v * 100).toFixed(10); });
Where .toFixed(10) determines the desired size of your share.
source share