I'm trying to get a response from my API like JSONP but it's not right. Ajax code is this:
$.ajax({
type: 'GET',
url: url,
async: false,
contentType: "application/json",
dataType: 'jsonp',
complete: function(data) {
console.log(data);
}
});
Return is this from the console:
ThisistheAJAXreturnresponse:
How do I retrieve these values in JQuery?
Thank you