I have a handler : (jQuery ver = 1.7)
Which return something.

Im calling this handler via ajax :

I know that the always method should get an object like the complete func :
complete(jqXHR, textStatus) ……….//(jQuery Documentation)
But
when I Try to alert:
obj.readyState or
obj.status or
obj.statusText or
obj.responseText – I get UNDEFINED.
When I write alert(obj) it gives me ‘aaa’.
I need access to obj.readyState , obj.status etc…
Why dont I get a valid object?
All I want is to check it had 200 return code.
What am i missing ?
The
alwayscallback has 3 parameters: data, textStatus, jqXHR what you are looking for is the third one – jqXHR