Ich hab es jetzt hinbekommen nur leider gibt es da ein porblem mit den Kommerstellen.
Was kann ich dagen tun?
Und ist das richtig um die zeit in Tage Std Min und Sek darzustellen?
<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');
}
if(countdown > 86400){ tag = countdown / 86400; }else{ tag = 0; }
if(countdown > 3600){ std = (countdown / 3600) - tag; }else{ std = 0; }
if(countdown > 60){ min = (countdown / 60) - tag - std; }else{ min = 0; }
if(countdown > 86400){ sek = countdown - tag - std - sek; }else{ sek = 0; }
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>