diff --git a/index.html b/index.html index 191d3cc..f3771f3 100644 --- a/index.html +++ b/index.html @@ -8,7 +8,12 @@
+ + + + - - diff --git a/index.js b/index.js index 877a3aa..3cca1d6 100644 --- a/index.js +++ b/index.js @@ -1 +1,9 @@ -// Your code here +$(document).ready(function() { + var refresh = setInterval(function() { + var rawTime = new Date(Date.now()); + + console.log(rawTime); + $('#clock').html(rawTime); + }, 1000); + +});