Ver Mensaje Individual
  #2 (permalink)  
Antiguo 05/04/2003, 12:32
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, syntex.

Prueba este código:
Código PHP:
<html>
<
head>
<
script>
var 
color=false;
function 
cambiar() {
    
color = !color;
    
document.getElementById("tabla").style.borderColorcolor "red" "blue";
    
setTimeout("cambiar()",1000); //1000 = 1 segundo
}
</script>
</head>
<body onLoad="cambiar()">
<table width="200" id="tabla" style="border:1px solid red">
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
</table>

</body>
</html> 
Espero que te sirva. Saludos,