Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Nick Bushby
20,361 PointsPhotos 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

Daniel Newman
Courses Plus Student 10,715 PointsYour 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
20,361 PointsNick Bushby
20,361 PointsThat seems to have done the trick. I knew it was probably a small syntax error, but just wasn't seeing it. Thanks Daniel.
Daniel Newman
Courses Plus Student 10,715 PointsDaniel Newman
Courses Plus Student 10,715 PointsNo problem. Just mark this question as "best answer" or resolved. =)