This is an index over all available pages ordered by namespaces.
jQuery のプラグインを探してもそれらしいのが無かったので、独自で用意。
var numberFormat = function(num) { return num.toString().replace(/([\d]+?)(?=(?:\d{3})+$)/g, function (t) { return t+','; }); } // alerts 10,000 alert(numberFormat(10000));