Successfully loaded url: ' + settings.url + '</
p>');
}
);
Problem is that the objects passed to my function(s) are as follow:
Object type=ajaxSuccess
XMLHttpRequest readyState=4
Object global=true type=POST timeout=0
This is the result Firebug comes up with when using the following code:
/*
success
*/
$('#report').ajaxSuccess(
function(aaa, bbb, ccc)
{
console.log(aaa);
console.log(bbb);
console.log(ccc);
$(this).prepend('
Successfully loaded url: ' + ccc.url + '
');