hallo,
wie kann ich diesem script die anzeige der stunden hinzufügen?
habe es leider nur kopiert und verstehe das system daher nicht.
danke für alle tipps!
HTML-Code:
var delta = new Date(endTime - now)
var theMin = delta.getMinutes()
var theSec = delta.getSeconds()
var theTime = theMin;
theTime += ((theSec < 10) ? ":0" : ":") + theSec;