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

Nick Bushby
Nick Bushby
20,361 Points

Photos not displaying

I've looked through my code a few times for syntax errors, but I'm not seeing anything amiss. If anyone could point out what's wrong that would be greatly appreciated. Cheers.

Here's a snapshot of the code: https://w.trhou.se/b5593o1gs4

1 Answer

Your code:

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

Should be:

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

Last 4 letters. Mistake in order.

Nick Bushby
Nick Bushby
20,361 Points

That seems to have done the trick. I knew it was probably a small syntax error, but just wasn't seeing it. Thanks Daniel.

No problem. Just mark this question as "best answer" or resolved. =)