Ver Mensaje Individual
  #6 (permalink)  
Antiguo 02/05/2006, 12:52
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 22 años, 10 meses
Puntos: 772
Hola Húsar_Darko [ESP]

He modificado un poco el código:
Código:
<html>
<head>
<script>
function tamanno(){
 tabla=document.getElementById('tt');
 tabla.style.width=parseInt(tabla.style.width)+5+'px';
  if(parseInt(tabla.style.width)>=200){
   clearInterval(t);
   alert("pausa");
  }
}
</script>
</head>

<body onload="t=setInterval('tamanno()',500)">
<table style="width:0" cellpadding="0" cellspacing="0" id="tt">
  <tr>
    <td width="0"></td>
  </tr>
</table>
</body>
</html>
Saludos,