Skip to content

Instantly share code, notes, and snippets.

@jlengstorf
Created May 21, 2012 02:39
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jlengstorf/2760340 to your computer and use it in GitHub Desktop.
Save jlengstorf/2760340 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