<html>
<head>
<script type="text/javascript">
var targetDate = Date.parse("June 1, 2008 21:10");
function run() { var Interval = window.setInterval("countdown()", 1000); }
function countdown()
{
var d = new Date();
var milliseconds = targetDate - d.getTime();
var d2 = new Date( milliseconds );
var days = Math.floor(milliseconds / 86400000);
document.getElementById('countdown').innerHTML = days + " Tage<br>" + d2.getHours() + " Stunden<br>" + d2.getMinutes()+ " Minuten<br>" + d2.getSeconds() + " Sekunden<br>";
}
</script>
</head>
<body onLoad="run()">
<div id="countdown"></div>
</body>
</html>
Countdown!
SilverTiger 27.02.2007 - 295 Hits -
Frage zu Java Countdown
Dörk 15.08.2007 - 48 Hits - 9 Antworten
wie stoppe ich mein Makro
pelikan 12.10.2007 - 88 Hits - 3 Antworten
TuneUp Utilities und Partition entfernen
3po 21.10.2007 - 135 Hits - 3 Antworten