Ver Mensaje Individual
  #5 (permalink)  
Antiguo 30/09/2006, 02:17
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 23 años
Puntos: 772
Hola richardinj

A ver si este otro ejemplo te funciona:
Código PHP:
<html>
<
head>
<
script type="text/javascript">
function 
marcar(obj,valor) {
  
obj.style.background = (valor) ? 'aqua' '';
}
</script>
</head>
<body>
<table>
<tr onmouseover="marcar(this,true)" onmouseout="marcar(this,false)">
<td>uno</td><td>dos</td>
</tr>
</table>
</body>
</html> 
Saludos,