diff --git a/index.html b/index.html index 191d3cc..23430bf 100644 --- a/index.html +++ b/index.html @@ -1,14 +1,20 @@ - - Clock Tower - - - + + Clock Tower + + + - -
- - + +
+ + + + - + + diff --git a/index.js b/index.js index 877a3aa..628f792 100644 --- a/index.js +++ b/index.js @@ -1 +1,8 @@ -// Your code here +$(document).ready(function() { + var checkTime = setInterval(function() { + var today = new Date(Date.now()); + + console.log(today); + $('#clock').html(today); + }, 1000); +});