Einzelnen Beitrag anzeigen
Alt 23.11.2004, 18:35   #8
jak
Inventar
 
Registriert seit: 13.06.2001
Beiträge: 1.830


Standard

Code:
<script language="JavaScript">
function erhoehe(i){
 i=i+10;
 fortschritt.value=i;
 if(i<100){
  window.setTimeout("erhoehe(i)",1000);
 }
}
window.setTimeout("erhoehe(0)",1000);
</script>
<input type="text" name="fortschritt">
Nicht getestet, sollte gehen.

Jak
____________________________________
Join the DNRC | Godwin\'s Law (thx@stona)
Documentation is like sex: If it\'s good, it\'s very, very good. If it\'s bad, it\'s better than nothing.
\"In theory, theory and practice are the same. In practice, they are not\" (Lawrence Berra)
jak ist offline   Mit Zitat antworten