>
> $.blockUI();
> searchLocDep( .... );
> searchLocArr( .... );
> searchLocInt( ... );
> setTimeout(function() {
> $.unblockUI();
>
> }, 200);
>
> That way all the "search" stuff gets run asap?
No. You need to give the browser a chance to render the DOM updates
before hitting it with intensive stuff.
No comments:
Post a Comment