wie meinst du das Modulo-Rechnung
ich hab das jetzt so gemacht oder hast du nen besseren Vorschlag?
<b id="TagTime">Gebäude</b> - <b id="StdTime">Gebäude</b>:<b id="MinTime">Gebäude</b>:<b id="SekTime">Gebäude</b>
<script language="Javascript">
<!--
var countdown = "10060";
function docount()
{
if (countdown > 0)
{
countdown--;
}
else
{
document.write('fertig');
}
tag = countdown / 86400;
std = (countdown / 3600) - tag;
min = (countdown / 60) - tag - std;
sek = countdown - tag - std - min;
tag = parseInt(tag)
std = parseInt(std)
min = parseInt(min)
sek = parseInt(sek)
document.getElementById("TagTime").firstChild.nodeValue = tag;
document.getElementById("StdTime").firstChild.nodeValue = std;
document.getElementById("MinTime").firstChild.nodeValue = min;
document.getElementById("SekTime").firstChild.nodeValue = sek;
window.setTimeout('docount()',1000);
}
docount();
//-->
</script>