Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialErin Knapp
Courses Plus Student 8,861 PointsCan't get photos to show from Flickr API
This is my code and all I get are the 3 buttons for the 3 animals. I have gone over it at least 5 times and can't figure out why pictures do not load.
$(document).ready(function () {
$('button').click(function () {
$("button").removeClass("selected");
$(this).addClass("selected");
var flickerAPI = "http://api.flicker.com/services/feeds/photos_public.gne?jsoncallback=?";
var animal = $(this).text();
var flickrOptions = {
tags: animal,
format: "json"
};
function displayPhotos (data) {
var photoHTML = '<ul>';
$.each(data.items, function (i, photo) {
photoHTML += '<li class="grid-25 tablet-grid-50">';
photoHTML += '<a href="' + photo.link + '" class="image">';
photoHTML += '<img src="' + photo.media.m + '"></a></li>';
});
photoHTML +='</ul>';
$('#photos').html(photoHTML);
}
$.getJSON(flickerAPI, flickrOptions, displayPhotos);
}); //runs when a button is clicked
}); //end ready
Dave McFarland
Treehouse TeacherDo you see any message in the JavaScript console in the browser?
Are you using Workspaces or working with locally with the project files?
Erin Knapp
Courses Plus Student 8,861 PointsI'm working in Workspaces. This is what the JavaScript console says in the browser when I click on one of the buttons:
Failed to load resource: net::ERR_NAME_NOT_RESOLVED http://api.flicker.com/services/feeds/photos_public.gne?jsoncallback=jQuery111005438527257647365_1415228020427&tags=Dog&format=json&_=1415228020428
Erin Knapp
Courses Plus Student 8,861 Points.... thank you. That sure is embarassing!
Erin Knapp
Courses Plus Student 8,861 PointsErin Knapp
Courses Plus Student 8,861 PointsOh and I compared it over and over again to the code show in the video and for the life of me cannot find a difference.