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 JavaScript and the DOM (Retiring) Getting a Handle on the DOM DOM Selection - More Review

Khaleel Yusuf
Khaleel Yusuf
15,208 Points

Please fill in the correct answer in each blank provided below.

Isn't this correct?

3 Answers

Steven Parker
Steven Parker
229,670 Points

To be able to check your answer, you'll need to tell us what answer you gave.

Khaleel Yusuf
Khaleel Yusuf
15,208 Points
document.querySelectorAll('[class=student-info]');
Steven Parker
Steven Parker
229,670 Points

That would probably work in actual practice if that was the only class the element had, but the quiz is looking for the simpler class selector (".student-info") which would work even if there were other classes.