Her er også et simpelt eksempel
<html>
<head>
<script>
function countdown(seconds)
{
if (seconds > 0)
{
document.getElementById('counter').value = seconds;
seconds--;
setTimeout("countdown(" + seconds + ")",1000);
}
else
{
window.location = "http://google.dk";
}
}
</script>
</head>
<body onload="countdown('10');">
<input type="text" id="counter" />
</body>
</html>
Indlæg senest redigeret d. 21.08.2007 09:25 af Bruger #3275