Jquery Ajax call returns data but success function not called due to jquery function [jQuery111208562382296659052_1443009765276 function] not called?
Hi EveryOne,
var lsUrl= "service api url"; $.ajax({ url: lsUrl, type: "GET", crossDomain: true, dataType: "jsonp", // from the server async: false, contentType: "application/json; charset=utf-8", // to the server ProcessData: true, success: function (success) {
}error:function(error){}});
My ajax call function returning json data but success function not called.How can i fix this issue.
That service api returns data like jQuery111205524142505601048_1443178060859({"d":"{\"Table\":[{\"column1\":14}]}"});
jQuery111205524142505601048_1443178060859 function not called. so its return a error 200 parser error.Would like to know how to fix this issue.
Thanks in Advance