Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@jlengstorf
Created May 21, 2012 02:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jlengstorf/2760361 to your computer and use it in GitHub Desktop.
Save jlengstorf/2760361 to your computer and use it in GitHub Desktop.
#11 Code example from "JSON: What It Is, How It Works, & How to Use It"
function loadFlickr(flickrid)
{
$('#feed').html('<span><img src="/blog/images/lightbox-ico-loading.gif" alt=""></span>');
$.ajax({
type:'GET',
url:"http://api.flickr.com/services/feeds/photos_public.gne",
data:"id="+flickrid+"&lang=en-us&format=json&jsoncallback=?",
success:function(feed) {
// Do something with the response
},
dataType:'jsonp'
});
}
@anessasmommy66
Copy link

Very new please help

@anessasmommy66
Copy link

$('#feed').html('');
$.ajax({
type:'GET',
url:"http://api.flickr.com/services/feeds/photos_public.gne",
data:"id="+flickrid+"&lang=en-us&format=json&jsoncallback=?",
success:function(feed) {
// Do something with the response
},
dataType:'jsonp'
});not sure what to do
}

@anessasmommy66
Copy link

Ruthann 28 Kentucky

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment