Skip to content

Instantly share code, notes, and snippets.

@mgroves
Created May 26, 2014 15:17
Show Gist options
  • Select an option

  • Save mgroves/faed74d6dab7666860a2 to your computer and use it in GitHub Desktop.

Select an option

Save mgroves/faed74d6dab7666860a2 to your computer and use it in GitHub Desktop.
$(document).ready(function() {
$.ajax({
type: "GET",
url: "http://exampleapi.com/jsonp",
dataType: 'jsonp',
crossDomain: true // forcing a cross domain request for demonstration, you can omit this
})
.done(function(content) {
console.log(content);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment