hi,
jaja, das date objekt ist ein bisschen verwirrend, daher ein kleines Script. Ich hoffe, ich habe richtig gerechnet...
Gruesse Joachim
<html>
<head>
<script language="javascript1.2">
function dplTime () {
var birthdate = new Date(1981, 05, 15);
var today = new Date;
var diff = today - birthdate;
var days = (diff / (1000*60*60*24));
var hours = (diff % (1000*60*60*24)) / (1000*60*60);
var mins = (diff % (1000*60*60)) / (1000*60);
document.feld.out.value = "Tage: " + parseInt(days) + " - Stunden: " + parseInt(hours) + " - Minuten: " + parseInt(mins);
}
</script>
</head>
<body onload="setInterval('dplTime()',200)">
<form Name="feld">
<input type="text" name="out" size="40">
</form>
</body>
</html>