Ver Mensaje Individual
  #5 (permalink)  
Antiguo 03/06/2010, 06:57
Avatar de RIVERMILLOS
RIVERMILLOS
 
Fecha de Ingreso: marzo-2010
Mensajes: 1.336
Antigüedad: 14 años, 2 meses
Puntos: 15
Respuesta: ayuda con tooltip y jquery

hola muchas gracias por tu respuesta. lo hice asi pero no me esta funcionando porque me sale el tooptil despues que quito el mouse del objeto.

asi lo hice

$(".efecto_tt").live("mouseover",function(){
var id= $(this).attr("id");
$("#tooltip").load("FormulaAjax/tooltip.php?error="+id);
$("#tooltip").css("top",e.pageY);
$("#tooltip").css("left",e.pageX);
$("#tooltip").show("slow");
$("#tooltip").fadeTo("slow",0.7);
return false;
});



saludos.