Ver Mensaje Individual
  #2 (permalink)  
Antiguo 17/03/2005, 10:52
Avatar de ludovico2000
ludovico2000
 
Fecha de Ingreso: noviembre-2003
Ubicación: Bizkaia
Mensajes: 1.315
Antigüedad: 21 años
Puntos: 2
Puedes crear tres funciones para cada uno de los eventos: mouseover, mouseout y onclick, de la siguiente manera:

Código:
<script languaje='javascript'>
function over(cual){
document.body.style.cursor='hand';
cual.style.backgroundColor='#00ffff';
};

function out(cual){
document.body.style.cursor='default';
cual.style.backgroundColor='#00ddff';
};

function click(cual){
AQUI NO TENGO CLARO CÓMO APLICAR LA FUNCIÓN
LOCATION.HREF='INDEX.HTM';
};

</script>
y LUEGO...

Código:
<tr bgcolor='#00ddff' onmouseover='over(this)' onmouseout='out(this)' onClick='click(this)'>
espero haberte ayudado

COMPARTIENDO, MEJORAMOS TODOS