Let's say I have this code:
function onComplete(event, request, settings)
{
}
$('body').ajaxComplete(onComplete);
In regular ajax success handlers, I can simply access the data directly, as this will be the first parameter for the handler. It will also be in the correct format (if the content type was installed directly on the server).
How do I process data in an event ajaxComplete?
Svish source
share