On Oct 30, 12:47 pm, debussy007 <[EMAIL PROTECTED]> wrote:
> These functions take a specific amount of time to be executed:
> searchLocDep( .... )
> searchLocArr(  .... )
> searchLocInt(  ... )
> You can see it in Firefox, the message will appear for like 5 seconds, I
> don't want the user to interact with the website in between this interval.


You must use setTimout for something like this to work x-browser.  Did
you try something like this?

$.blockUI();
setTimeout(function() {
    searchLocDep( .... )
    searchLocArr(  .... )
    searchLocInt(  ... )
    $.unblockUI();
}, 200);

Reply via email to