Skip to content

Instantly share code, notes, and snippets.

@rmcnaughGitHub
Forked from jlengstorf/gist:2760340
Created March 8, 2016 21:18
Show Gist options
  • Save rmcnaughGitHub/f3ec52390acd19a6f6eb to your computer and use it in GitHub Desktop.
Save rmcnaughGitHub/f3ec52390acd19a6f6eb to your computer and use it in GitHub Desktop.
#8 Code example from "JSON: What It Is, How It Works, & How to Use It"
$.ajax(
type:'GET',
url:"http://example.com/users/feeds/",
data:"format=json&id=123",
success:function(feed) {
document.write(feed);
},
dataType:'jsonp'
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment