i want to access the object inside the success function of $(obj).load(); like this :
$('.target').load('some url',function(){
$(this).addClass('ajaxLoaded');
});
to use it in $.ajaxSetup like this :
$.ajaxSetup({
success : function(){
$(this).addClass('ajaxLoaded');
}
});
but can't do that $(this) return the XHR elemnt