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 trialJacquelyn Hollister-tyson
10,247 PointsMy code matches the video but still does not work. Here is a snapshot of my workspace: https://w.trhou.se/r0ij87b8p7
My code matches the video but still does not work. Here is a snapshot of my workspace: https://w.trhou.se/r0ij87b8p7
2 Answers
KRIS NIKOLAISEN
54,971 PointsThere are two things to fix.
1) The argument for getElementById() doesn't require a pound sign. So
const select = document.getElementById('#breeds');
should just be:
const select = document.getElementById('breeds');
2) Template literals are enclosed with back-ticks instead of quotes. This key is to the left of the number 1 key on the keyboard.
` Vs. '
In your code you used single quotes. The correct code is below:
const html = `
<img src='${data}' alt>
<p>Click to view images of ${select.value}s</p>
`;
Jacquelyn Hollister-tyson
10,247 PointsThank you so much!!!