Witam,
mam problem z prostym timerem. Dostaję powiadomienie o błędzie:
ReferenceError: clock is not defined
Nie mam pomysłu co może być źle.
document.addEventListener("DOMContentLoaded", function() {
const elm = document.getElementsByClassName("clock");
function clock() {
let now = new Date();
let hours = now.getHours();
let min = now.getMinutes();
if (hours < 10) hours = "0" + hours;
if (min < 10) min = "0" + min;
console.log(hours+":"+min);
elm[0].innerHTML = hours + ":" + min;
setTimeout("clock()", 1000);
}
elm[0].addEventListener("load", clock());
});