How to access 'Object' portion of JSON using Jquery?
I used console.table(someData) to output the object shows in the attaches image. I used the following code to get the data: var someData = GetJson(‘someurlthatreturnsjson’); function GetJson(Url) { return $.ajax({ url: Url, xhrFields: { withCredentials: true }, dataType: "json" }); } I tried: var x = someData.readyState; // 1 was returned as expected. var y… Read More How to access 'Object' portion of JSON using Jquery?