![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
22/02/2006, 09:55
|
![Avatar de JavierB](http://static.forosdelweb.com/customavatars/avatar16568_12.gif) | Colaborador | | Fecha de Ingreso: febrero-2002 Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 23 años Puntos: 772 | |
¿Algo así...?
Código:
<html>
<head>
<script type="text/javascript">
var num=0;
var maximo=1000;
function puntear() {
num++;
document.getElementById('punto').innerHTML = num;
if (num==maximo)
location = 'http://www.forosdelweb.com';
}
</script>
</head>
<body onload="setInterval('puntear()',1000)">
<span id="punto">0</span>
</body>
</html>
Saludos, |