I'm working in an app and I was catching all the ajax request using:
$(document).ajaxComplete(function (xhr, status) {
//...
});
Now, I'm using MicrosoftMvcAjax
and MicrosoftAjax
and when a XHR request finished a message in the console says: XHR finished loading
.
How I can catch when a xhr
request finish or what is the equivalent for ajaxComplete
in xhr
?