Files
purplebored.pl/script.js
Purplebored 44eee774fd New files.
2024-02-16 22:07:14 +01:00

17 lines
408 B
JavaScript

// Time Widget.
function updateTime() {
const now = new Date();
const options = {
timeZone: 'Europe/Warsaw',
hour: 'numeric',
minute: 'numeric',
second: 'numeric',
hour12: false
};
const timeString = now.toLocaleTimeString('en-US', options);
document.getElementById('time').textContent = timeString;
}
updateTime();
setInterval(updateTime, 1000);