jQuery countdown formatting

jQuery countdown formatting

Hi there

I am trying to create a countdown showing only minutes and seconds. This works:

  1. $(function () {
  2.       $('#defaultCountdown').countdown({ 
  3. until: new Date(2012, 12 - 1, 8), format: 'MS'}); 
  4. });
However, the resulting string is 125973 - what I'd like to do is add a comma in the correct place so that it reads:

125,973.

If anyone has any pointers I'd be most grateful.. thanks!