Ver Mensaje Individual
  #5 (permalink)  
Antiguo 02/05/2006, 12:39
Húsar_Darko [ESP]
 
Fecha de Ingreso: marzo-2006
Mensajes: 8
Antigüedad: 18 años, 10 meses
Puntos: 0
Muchas gracias , no se porque pero en el opera me funciona bien, pero en el internet explorer no me funciona .

El código lo tengo así:

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

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