Ver Mensaje Individual
  #4 (permalink)  
Antiguo 11/06/2004, 04:02
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 22 años, 9 meses
Puntos: 772
Hola de nuevo.

Te he preparado un código que no utiliza ni id ni name. Creo que puede estar mejor:
Código HTML:
<html>
<head>
<script>
function encender(estafila)
{
estafila.style.backgroundColor="#00ffff";
}
function apagar(estafila)
{
estafila.style.backgroundColor="#00ddff";
}
</script>
</head>

<body bgcolor="#FFFFFF" text="#000000">
<table width="75%" border="1">
  <tr onmouseover="encender(this)" onmouseout="apagar(this)">
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
  <tr onmouseover="encender(this)" onmouseout="apagar(this)">
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
</table>
</body>
</html> 
Espero que te sirva. Saludos,