Ver Mensaje Individual
  #21 (permalink)  
Antiguo 10/12/2004, 11:29
lithiumfire
 
Fecha de Ingreso: noviembre-2004
Mensajes: 7
Antigüedad: 19 años, 6 meses
Puntos: 0
Algo más interesante

Hola, necesito su ayuda miren, ésta es mi tabla:
Código HTML:
<table id="tableOne">

	<thead>

		<tr>
			<th/>
			<th id="row" title="Option One">Option One</td>
			<th id="row" title="Option Two">Option Two</td>
			<th id="row" title="Option Three">Option Three</td>
			<th id="row" title="Option Four">Option Four</td>
			<th/>
		</tr>

	</thead>

	<tbody>

		<tr>
			<td id="edit"/>
			<td onmouseover="this.style.backgroundColor='#33CC99';" onmouseout="this.style.backgroundColor='cyan';" id="data">05</a></td>
			<td onmouseover="this.style.backgroundColor='#33CC99';" onmouseout="this.style.backgroundColor='cyan';" id="data">ABC</td>
			<td onmouseover="this.style.backgroundColor='#33CC99';" onmouseout="this.style.backgroundColor='cyan';" id="data">12.00</td>
			<td onmouseover="this.style.backgroundColor='#33CC99';" onmouseout="this.style.backgroundColor='cyan';" id="data">12/12/2004</td>
			<td id="erase"/>
		</tr>
	</tbody>
</table> 
Bien, esto sólo me ilumina la celda que señalo, es lo más sencillo del mundo, pero también necesito que TAMBIÉN se ilumine el resto de la fila pero con OTRO color... ¿me explico? En otras palabras quiero que la fila que señale se ilumine de verde mientras q sólo la celda de ésa misma fila sobre la q está el cursor se ilumine pero de otro color.

Gracias de antemano!