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