diff options
author | floppydiskette <git@diskfloppy.me> | 2024-08-08 15:35:48 +0100 |
---|---|---|
committer | floppydiskette <git@diskfloppy.me> | 2024-08-08 15:35:48 +0100 |
commit | 80cbe94dc0bef990e79c122909ac03c908639f09 (patch) | |
tree | 8a63a2341303daac4ac621f8f4962a81d684e88a /public/js | |
parent | 031aa417b8918d9067f062774f5228587e89ef36 (diff) | |
parent | bb3f6afc81902fb66fc2ceb4f5fe97420bf0d9f9 (diff) |
Merge branch 'redesign'
Diffstat (limited to 'public/js')
-rw-r--r-- | public/js/liveClock.js | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/public/js/liveClock.js b/public/js/liveClock.js new file mode 100644 index 0000000..07c9eae --- /dev/null +++ b/public/js/liveClock.js @@ -0,0 +1,10 @@ +function time() { + var span = document.getElementById("clock"); + var d = new Date(); + var s = d.getSeconds(); + var m = d.getMinutes(); + var h = d.getHours(); + span.textContent = + ("0" + h).substr(-2) + ":" + ("0" + m).substr(-2) + ":" + ("0" + s).substr(-2); +} +setInterval(time, 1000); |