jQuery plugin to add comma separating numbers into three digits without white spaces and if total digits are under three, then no comma added.
Ex:
2984 => 2,984
297312984 => 297,312,984
298 => 298
$('span.rawNums').digits();
Thanks.
|
|
@Paul Creasey had the simplest solution as the regex, but here it is as a simple jQuery plugin:
You could then use it like this:
|
|||||||||||||
|
|
Something like this if you're into regex, not sure of the exact syntax for the replace tho!
|
|||||
|
|
You could try NumberFormatter.
It also supports different locales, including of course US. Here's a very simplified example of how to use it:
Output:
|
|||||||
|
|
This is not jQuery, but it works for me. Taken from this site.
|
||||
|
|
A more thorough solutionThe core of this is the
The following function does all of the above.
You could use it in a jQuery plugin like this:
|
||||
|
|
|
You can also look at the jquery FormatCurrency plugin, it has support for multiple locales as well, but may have the overhead of the currency support that you don't need.
|
|||
|
|