I have a GET request successfully finishing with JQuery. In the success parameter, I have a function with the three parameters, like it shows on the JQuery examples. The textStatus is Success and the jqXHR shows as [object Object] and data is null. Here's my call I use in the developer console:
$.get("https://spreadsheets.google.com/feeds/cells/key/sheetID/private/full? min-row=1&min-col=1&max-row=1",
{},
function(data,textStatus,jqXHR)
{alert(data);alert(textStatus);alert(jqXHR);},"xml");
My question is, what parameter of the success function contains the XML? I haven't been able to find any examples that get xml from the jqXHR.(I've tried .responseXML and .xml) Is jqXHR what contains the xml and I'm just not accessing it right? I have the spreadsheet set so anyone with the link can view and edit it so it shouldn't be an authorization issue.
Here's my developer console output if that helps.