I have a working script that counts up every second from a specified date & time. Could anyone tell me how I could add a commas so it appears something like: 81,547,546
var START_DATE = new Date("October 10, 2012 22:30:00");
var INTERVAL = 1;
var INCREMENT = 1;
var START_VALUE = 35001;
var count = 0;
$(document).ready(function() {
var msInterval = INTERVAL * 1000;
var now = new Date();
count = parseInt((now - START_DATE)/msInterval) * INCREMENT + START_VALUE;
document.getElementById('counter').innerHTML = count;
window.setInterval( function(){
count += INCREMENT;
document.getElementById('counter').innerHTML = count;
}, msInterval);
});
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<div id="counter"></div>