Skip to content

Instantly share code, notes, and snippets.

@deciob
Created October 2, 2011 11:39
Show Gist options
  • Save deciob/1257373 to your computer and use it in GitHub Desktop.
Save deciob/1257373 to your computer and use it in GitHub Desktop.
JQuery jsonp call
$.ajax({
url: "http://api.worldbank.org/countries/AUT/indicators/BAR.POP.6064?per_page=10&date=2000:2011&format=jsonP&prefix=Getdata",
dataType: 'jsonp',
jsonp: false,
jsonpCallback: "Getdata",
success: function(data){
/* do something awesome! */
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment