Ver Mensaje Individual
  #2 (permalink)  
Antiguo 24/06/2003, 06:10
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 22 años, 2 meses
Puntos: 772
Hola, Subotai.

A ver si esto te ayuda:
Código PHP:
<html>
<
head>
<
script>
function 
marcar(obj) {
    if (
obj.checked)
        
document.getElementById('fila').style.backgroundColor='ff0000'
    
else
        
document.getElementById('fila').style.backgroundColor=''
}
</script>
</head>

<body>
<table>
  <tr id="fila">
    <td></td>
    <td></td>
    <td>
    <input type="checkbox" onClick="marcar(this)">
    </td>
  </tr>
  <tr>
    <td></td>
    <td></td>
    <td></td>
  </tr>
</table>
</body>

</html> 
Saludos,