Ver Mensaje Individual
  #3 (permalink)  
Antiguo 03/04/2011, 18:42
InKarC
 
Fecha de Ingreso: noviembre-2005
Mensajes: 426
Antigüedad: 19 años
Puntos: 87
Respuesta: Jquery - Problema con live() y callback

No existe un evento llamado "hover"; hover es solo una funcion de jquery; lo que estas buscando es "mouseover"

Código:
$('.Event').live('mouseover', function() {

      $('.tip', this).fadeIn('slow');
      return true;
 }).live('mouseout', function() {

      $('.tip', this).fadeOut('slow');
      return false;
 });