I\'m facing the same issue, while trying for cross-domain request. Situation is strange, my data is getting loaded while hit the requested url directly on browser, the strange p
try with
console.log(data);
with no slices.
or, even better
console.log(JSON.stringify(data.slice(0,100)));
with JSON.stringify() (documented here) method you get a string wich is not parsed or checked for json validity.
hope this helps.