Ver Mensaje Individual
  #1 (permalink)  
Antiguo 08/02/2012, 23:47
Avatar de Chico3001
Chico3001
 
Fecha de Ingreso: septiembre-2011
Ubicación: Mexico, DF
Mensajes: 112
Antigüedad: 12 años, 8 meses
Puntos: 12
Pregunta Consulta tooltip

Hola... ando aprendiendo jquery y diseñe esta funcion para mostrar un tooltip con ajax

Código PHP:
        $(".jq_showip").mouseenter(function(){
            var 
ip = $(this).text();
            var 
str 'Espere un momento ...';

            $(
"#ajax1").html(str);
            $.
get('ajax.php?m1=ip&m2=' ip, function(data){
                $(
"#ajax1").html(data);
            });
            $(
"#ajax1").fadeIn();
            $(
this).mousemove(function(e){
                $(
"#ajax1").css({tope.pageY+15,lefte.pageX+15});
            });
            $(
this).mouseleave(function(){
                $(
"#ajax1").fadeOut();
            });
        }); 
Pero la duda que tengo es, la funcion ajax.php solo se llama una vez cuando el raton entra en la clase js_showip? o se esta llamando constantemente mientras el raton se encuentre alli?