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

Que tal así? aunque no me parece tan efectiva. El plugin que usas me parece que tiene mucho codigo, no es tan ligero.
Código Javascript:
Ver original
  1. ...
  2. function(e){ //onMouseover element
  3. $(".ajaxtooltip").hide();
  4.                 var $tooltip=tooltips[parseInt(this.titleposition)]
  5.                 if (!$tooltip.get(0).loadsuccess){ //first time fetching Ajax content for this tooltip?
  6.                     $tooltip.html(ajaxtooltip.loadingHTML).show()
  7.                     $tooltip.load(this.titleurl, '', function(){
  8.                         ajaxtooltip.positiontip($tooltip, e)
  9.                         ajaxtooltip.showtip($tooltip, e)
  10.                         $tooltip.get(0).loadsuccess=true
  11.                     })
  12.  
  13.                 }
  14.                 else{
  15.                     ajaxtooltip.positiontip($tooltip, e)
  16.                     ajaxtooltip.showtip($tooltip, e)
  17.                 }
  18.             },
  19.             function(e){ //onMouseout element
  20. $(".ajaxtooltip").hide();
  21.                 var $tooltip=tooltips[parseInt(this.titleposition)]
  22.                 ajaxtooltip.hidetip($tooltip, e)       
  23.             }
  24.  
  25. ...

Última edición por chicohot20; 07/01/2012 a las 07:25