Por defecto, la pimera celda ya está seleccionada en amarillo. Quiero hacer un script para que cuando el ratón pase por las otras celdas con mouseover, el color de la primera celda vuelva a blanco.
Por favor ayuda.
Código:
<BODY bgcolor=white> <table> <tr> <td style="background-color:yellow;" onMouseOver="this.style.background='yellow'" onMouseOut="this.style.background='white'" >• Celda 1</td> <td onMouseOver="this.style.background='yellow'" onMouseOut="this.style.background='white'" >• Celda 2</td> <td onMouseOver="this.style.background='yellow'" onMouseOut="this.style.background='white'" >• Celda 3</td> </tr> </table>