nedtælling til hjemmeside
Jeg har en nedtælling jeg ikke kan få til at virke.Den skal tælle ned i dage, timer, minutter og sekunder til d. 12. maj 2012 kl. 15.00.
Jeg kan bare ikke få det vil at virke, hvor er fejlen henne?
<SCRIPT type="text/javascript">
var end = new Date("maj 12, 2012 15:00:00 GMT+1");
function toSt2(n) {
s = "";
if (n < 10) s += "0";
return (s + n).toString();
}
function countdown() {
d = new Date();
count = Math.floor(end.getTime() - d.getTime());
if(count > 0) {
count = Math.floor(count/1000);
seconds = toSt2(count%60); count = Math.floor(count/60);
minutes = toSt2(count%60); count = Math.floor(count/60);
hours = toSt2(count%24); count = Math.floor(count/24);
days = count;
document.getElementById('timeDisplay').innerHTML = days + ' dage, '+ hours + ' timer, ' + minutes + ' min. ' + seconds + ' sek.';
setTimeout("countdown()", 1000);
}
}
window.onload=countdown;
</SCRIPT>
Er der nogen her som kan hjælpe?