Skip to main content

Do myFunction right after JSONP request



I have a script which allows to display Google suggestions: JsFiddle





I want to do a function with the first li item rendered by the ui autocomplete, so I did this:







$("input#term").keyup(function() {

DoMyFunction($('.ui-autocomplete li:first-child a').text(), true);

});







The problem however is that there is a period of time between the keyup---> request--->xml cache and html rendering by the ui autocomplete. Which means the my function (DoMyFunction) is being triggered when there is no html list, hence it doesnt work. So my question is: How do I do my function right after the reqeust is cached and processed. Setting a timer wont work because there are to many variables to account for (ea user bandwidth).


Comments

  1. As per the jQuery UI docs, there's an open event which is triggered when the suggestion menu is opened

    You'll have to do something like this :

    $("#term").autocomplete({

    source: function( request, response ) {
    // ajax function
    },
    select: function(e, ui){
    //
    }
    open : function(){
    //here you are sure the suggestion menu is opened
    DoMyFunction($('.ui-autocomplete li:first-child a').text(), true);
    }
    });

    ReplyDelete

Post a Comment

Popular posts from this blog

Slow Android emulator

I have a 2.67 GHz Celeron processor, 1.21 GB of RAM on a x86 Windows XP Professional machine. My understanding is that the Android emulator should start fairly quickly on such a machine, but for me it does not. I have followed all instructions in setting up the IDE, SDKs, JDKs and such and have had some success in staring the emulator quickly but is very particulary. How can I, if possible, fix this problem?