Ver Mensaje Individual
  #2 (permalink)  
Antiguo 28/05/2004, 09:16
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, JAOL1970.

Yo diría que te has explicado muy bien. Ahora veamos si yo te he entendido:
Código PHP:
<html>
<
head>
<
script>
function 
cambiar(obj) {
    
elem=obj.parentNode.document.getElementsByTagName('td');
    for(
i=0;i<elem.length;i++)
        
elem[i].style.background=(elem[i]==obj) ? 'cyan' 'white';
}
</script>
</head>

<body>
<table width="75%" border="1" cellspacing="0">
  <tr>
    <td onclick="cambiar(this)">&nbsp;</td>
    <td onclick="cambiar(this)">&nbsp;</td>
    <td onclick="cambiar(this)">&nbsp;</td>
    <td onclick="cambiar(this)">&nbsp;</td>
  </tr>
</table>
</body>
</html> 
Saludos,