jQuery countdown formatting
Hi there
I am trying to create a countdown showing only minutes and seconds. This works:
- $(function () {
- $('#defaultCountdown').countdown({
- until: new Date(2012, 12 - 1, 8), format: 'MS'});
- });
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!