Skip to content

Instantly share code, notes, and snippets.

@Azerothian
Created April 8, 2016 07:20
Show Gist options
  • Save Azerothian/53a4ba4b11d825a1cfe2a4845a8a08a0 to your computer and use it in GitHub Desktop.
Save Azerothian/53a4ba4b11d825a1cfe2a4845a8a08a0 to your computer and use it in GitHub Desktop.
<div id="clock">
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.12.0/moment.min.js"></script>
<script>
setInterval(function() {
document.getElementById("clock").innerHTML = moment().format("YYYY/DD/MM HH:MM:ss");
})
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment