Ver Mensaje Individual
  #3 (permalink)  
Antiguo 06/01/2012, 12:08
Avatar de chicohot20
chicohot20
 
Fecha de Ingreso: mayo-2009
Mensajes: 388
Antigüedad: 15 años, 8 meses
Puntos: 43
Respuesta: Tooltip tarda en desaparecer con Jquery

En el mouseout agregale esto: $(".ajaxtooltip").hide();, es una de tantas soluciones:
Código Javascript:
Ver original
  1. ...
  2. function(e){ //onMouseout element
  3. $(".ajaxtooltip").hide();
  4.                 var $tooltip=tooltips[parseInt(this.titleposition)]
  5.                 ajaxtooltip.hidetip($tooltip, e)       
  6.             }
  7. ...

Nos cuentas si te resultó