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 trialNick 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. =)