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.

Matt Gaboury
Full Stack JavaScript Techdegree Student 1,540 PointsIs it supposed to be document.querySelectorAll?
I am confused on how this is supposed to look. Is it that or some form of document.querySelectorAll('student-info');
2 Answers

Raffael Dettling
32,997 PointsYou forgot the point "." in front of the student-info it´s a class :)

andren
28,520 PointsIt is indeed a variation of document.querySelectorAll('student-info')
.
The querySelector
and querySelectorAll
method takes a CSS selector as their argument. In CSS you select classes by typing a period and then the name of the class. So to select the student-info
class the code would look like this:
document.querySelectorAll('.student-info');
And that it the answer to the quiz. Knowing basic CSS selectors is quite handy even if you mainly do JS development since they are quite useful for selecting elements.