quickstep25
8/20/2014 - 9:13 PM

Moment - Update Time

Moment - Update Time

(function update_time(){ 
    var now = moment().format('h:mm:ss a');
    $('.timer').text(now);
    setTimeout(update_time, 1000);
})();