I am working with jQuery v1.6. My question is: why does the responseText property returning undefined?
Code:
var AjaxResult = jQuery.ajax({ ... });
console.log(AjaxResult);
// logs "Object {readyState=1, ...}"
// So I know that the object is being returned.
console.log(AjaxResult.responseText);
// This line outputs "undefined" to the console.