Ver Mensaje Individual
  #8 (permalink)  
Antiguo 07/07/2004, 02:21
Avatar de derkenuke
derkenuke
Colaborador
 
Fecha de Ingreso: octubre-2003
Ubicación: self.location.href
Mensajes: 2.665
Antigüedad: 21 años, 2 meses
Puntos: 45
Viva el frontpage e? jaja [ademas creo que solo funcionaria en IE eso].

Bueno a ver, que el js no es lo tuyo, te echo una manita:

Código:
<table>
	<tr>
		<td id="celda">Texto</td>
	</tr>
</table>

<script language="javascript">
document.getElementById("celda").onmouseover=function() {
  this.style.backgroundColor="red";
  this.style.color="blue";
}
</script>
Y no tiene mas. He añadido el getElementById porque teoricamente hay que hacerlo asi.
__________________
- Haz preguntas inteligentes, y obtendrás más y mejores respuestas.
- Antes de postearlo Inténtalo y Búscalo.
- Escribe correctamente tus mensajes.