Unable to read data from AJAX (dataType:“jsonp”) call to web service
问题 I am using ajax call's to perform POST and GET operations from a WebService hosted on some server. I am using dataType:"jsonp" due to the cross domain issue.I can see the data being sent by the web service on fiddler. I want to access the data which I get from the service and I dont know how do do that. This is my ajax call: $.ajax({ type: method, url: "url", contentType: "application/json; charset=utf-8", dataType: "jsonp", jsonp: false, jsonpcallback:function(data){}, //What am I supposed