jQuery31105120590335855826_1489476298510 ({"MT_Claims_Resp":{"BuyingPrice":"Value","CreatedBy":"Value","Currency":"Value","Description":"Value","Distributor":Value,"DistributorCity":"Value"}
});
$.ajax({
type: 'GET',
data: {
username: "value",
password: "value"
},
url: "value",
dataType: "json"
}).done(function(resp) {
console.log(resp);
// resp should be a JavaScript object you can use directly
});
function jQuery31105120590335855826_1489476298510(resp) {
console.log(resp);
// access resp as you would a standard JavaScript object
}
In this case you are saying the callback is ?callback=jQuery3110512…_1
Which means in the code that is returned from the JSONP request there should be a function call
Open in new window
(... would be expanded to whatever was in the URL)Can you confirm that this is what you are getting back.