Сообщение от Panter7777
|
Все выше перечисленное попробовал в разных вариация и плюс своего, результат тот же, паузы нет!
|
Твая не умеет пользоваться setTimeout()...
<!DOCTYPE html>
<html>
<head>
<title>test</title>
<style type="text/css">
</style>
<script type="text/javascript">
function Go() {
setTimeout(function(){Inc(0)},100)
}
function Inc(N) {
document.getElementById('n').innerHTML=N
N++
if (N<11) setTimeout(function(){Inc(N)},400)
}
</script>
</head>
<body onload='Go()'>
<div id='n'></div>
</div>
</body>
</html>