Hi,
I'm trying to round to decimal places - this code works on the whole but if that answer is 14.1 I want it to show as 14.10
Any ideas?
Simon
<script language="javascript"><!--
function doRound(x, places) {
return Math.round(x * Math.pow(10, places)) / Math.pow(10, places);
}
function...