Set global: falseto your $.ajaxchallenge.
From the API :
Whether to run global Ajax event handlers for this request. The default value is true. Set to false to prevent global handlers such as ajaxStart or ajaxStop from starting.
Your call will look something like this:
$.ajax({
url: 'http://example.com/',
data: data,
global: false,
success: function() {
}
});
source
share