Skip to content

Instantly share code, notes, and snippets.

@quickstep25
Created August 20, 2014 21:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save quickstep25/2681bb01e8e259fe2151 to your computer and use it in GitHub Desktop.
Save quickstep25/2681bb01e8e259fe2151 to your computer and use it in GitHub Desktop.
Moment - Update Time
(function update_time(){
var now = moment().format('h:mm:ss a');
$('.timer').text(now);
setTimeout(update_time, 1000);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment