hi,
ich will einen Countdown der von x noch 0 runterzählt! Pro Sekunde -1!
vielleicht so:
var x = 30;
var zaehler = x;
function countdown()
{
if(zaehler > 0)
zaehler--;
window.setTimeout("countdown()", 1000);
}
--
life's for the living. so check me tomorrow [Matthew Good Band]
life's for the living. so check me tomorrow [Matthew Good Band]