Ver Mensaje Individual
  #6 (permalink)  
Antiguo 14/10/2009, 07:34
pekychery
 
Fecha de Ingreso: octubre-2009
Mensajes: 5
Antigüedad: 15 años, 3 meses
Puntos: 0
Respuesta: Cambiar color de texto con evento onMouseOver

Perdon el codigo tiene un error en la funcion.

<script type="text/javascript">
function CambiaColor(texto)
{

texto.style.color="blue";

}
</script>
</head>
<body>
<a id="texto1" onMouseOver="CambiaColor(document.getElementById(' texto2')">opción 1</a>
<a id="texto2" onMouseOver="CambiaColor(document.getElementById(' texto1'))">opción 2</a>
</body
></html>