I have a simple AJAX call that is executing a function on the beforeSend and on complete. They execute fine but the beforeSend is \"se
Your problem is the async:false flag. Besides the fact that it is bad practice (and really only makes sense in a very limited number of cases), it actually messes with the order of execution of the rest of the code. Here is why:
It seems that somewhere in the blockUI code they are setting a setTimeout. As a result, the blockUI code waits a very short amount of time. Since the next instruction in the queue is the ajax() call, the blockUI execution gets placed right behind that. And since you are using async:false, it has to wait until the complete ajax call is completed before it can be run.
In detail, here is what happens:
blockUIblockUI has a setTimeout and gets executed after the timeout is done (even if the timeout length is 0, the next line, ajax() will be run first) ajax() is called with async:false, which means JS stops everything until the request returnsajax() returns successfully and JS execution can continueblockUI code is probably over, so it will be executed nextblockUI runs as part of success, but in reality, it has just been queued up because of a timeoutIf you would NOT use async:false, the execution would go as followed:
blockUIblockUI has a setTimeout and gets executed after the timeout is done (even if the timeout length is 0, the next line, ajax() will be run first) ajax() is called and sends of a request to the server.blockUI code is probably over, so it will be executed nextblockUI text shows upsuccess and complete callbacks are executedHere are some jsFiddle examples to demonstrate the problem:
Example 1: This is the situation you are experiencing. The blockUI text doesn't show until after the ajax call executes.
Example 2: This is the exact same situation as yours, but with an alert before the ajax call. Because there is an alert, the timeout inside blockUI places the appearance of the blockUI text after the alert instead of after the ajax.
Example 3: This is how it is supposed to work without async:false