0 votes
in JQuery by
What does the jQuery ajax event method ajaxStart() do?

1 Answer

0 votes
by

Whenever an Ajax request is about to be sent, jQuery checks whether there are any other outstanding Ajax requests. If none are in progress, jQuery triggers the ajaxStart event. Any and all handlers that have been registered with the .ajaxStart() method are executed at this time.

...