Am trying to get the $.getJSON call back to work for an api that is returning json instead of jsonp data. How can alter this to work.
$.getJSON("http://url&callback=?", function(response){ alert("hi"); });
|
Recently i worked on similar kind of issue to get the twitter count of URL using twitter API Call which generates JSON response. Look below snippet for reference
I hope it will be useful for you too :) |
|||
|
|
callback=?parameter from your URL. As far as I know that is only needed when you want to auto-invoke a generated callback function for JSONP. In this case you are passing in the callback function, so there's no need to generate anything. – Frank van Puffelen Nov 22 '12 at 19:14