mirror of
https://github.com/mwalbeck/Start-Page.git
synced 2025-03-15 07:44:43 +00:00
11 lines
227 B
JavaScript
11 lines
227 B
JavaScript
|
var clockElement = document.getElementById( "timeanddate" );
|
||
|
|
||
|
function updateClock(clock) {
|
||
|
clock.innerHTML = new Date();
|
||
|
}
|
||
|
|
||
|
updateClock(clockElement);
|
||
|
|
||
|
setInterval(function () {
|
||
|
updateClock(clockElement);
|
||
|
}, 1000);
|