On Jul 8, 1:59 am, mkmanning <michaell...@gmail.com> wrote:
> There are also some currency formatting plugins:
>
> http://plugins.jquery.com/project/currencyFormat

That appears to make extensive use of toFixed(), which is known to be
buggy in some browsers for certain values.  Try:

  alert( (0.0625).toFixed(1) );

Firefox shows 0.1 (correct)
IE 6 shows 0.0 (wrong).

<URL: http://www.merlyn.demon.co.uk/js-rndg1.htm >


--
Rob

Reply via email to