Is there a way in javascript to format numbers (ie. in the form ###,###.00) but still keeping them as decimals (As opposed to converting to strings to add the ","), so that arithmetic functions can be used on them? Thanks
you might want to make a hidden field to store the raw number and use the visible text field to show the formatted version.