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 trial

JavaScript AJAX Basics (retiring) AJAX and APIs Displaying the Photos

fisnik poroshtica
fisnik poroshtica
14,154 Points

Why photos are not displayed?

Why photos are not displayed? i think i made everything same as in video, can you figure out what i did wrong? here is link: https://w.trhou.se/woce36wq62

1 Answer

Hi, so there are a couple of minor errors in your app.js code.

First, you forgot to close the opening a tag after setting the class. It should be:

photoHTML += '<a href="' + photo.link + '" class="image">'; 

Second, you need to use photo.media.m not photo.media.n to get the image:

photoHTML += '<img src="' + photo.media.m + '"></a></li>';

I made the mistake of leaving off the .m from photo.media.m, thanks!