Ver Mensaje Individual
  #2 (permalink)  
Antiguo 29/12/2011, 16:43
kokoou
 
Fecha de Ingreso: enero-2008
Ubicación: Buenos Aires
Mensajes: 305
Antigüedad: 16 años, 3 meses
Puntos: 14
Respuesta: mouseOut: a veces no me funciona ¿?

Código Javascript:
Ver original
  1. $('.boton').hover(
  2.     function() { // mouseover
  3.         this.src = this.src.replace("_off","_on");
  4.     },
  5.     function() { // mouseout
  6.         this.src = this.src.replace("_on","_off");
  7.     }
  8. );

http://api.jquery.com/hover/