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 trialKylie Soderblom
3,890 Pointscard.innerHTML = html. Why does this work? 'card is a class in a div. Thought we would've needed querySelector or...
I thought we would have had to say -
const card = document.querySelector(".class") and then we could do
card.innerHTML = html;
I'm referring to the Fetch / Dog API walkthrough
2 Answers
Cameron Childres
11,820 PointsHi Kylie,
The variable card
is declared on line two which is then used later on in the generateImage()
function.
I hope this helps -- let me know if you have any questions!
Kylie Soderblom
3,890 PointsPalm to forehead. Thank you!