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

HTML Build an Interactive Website Introduction to jQuery Using jQuery to Select Elements

Question regarding Jquery code challenge

I have entered the css selector of :

$(".nav ul li");

to answer the challenge of "use Jquery to select all list items (li) in an unordered list (ul) with the class of 'nav'. The code I entered is not working. Can someone help me fix my string?

2 Answers

Dave McFarland
STAFF
Dave McFarland
Treehouse Teacher

$(".nav ul li"); translates to "select a <li> tag that is inside a <ul> tag that is inside another tag with the class of .nav."

The challenge is asking for a <ul> tag that has the class .nav. Either of these would work:

$(".nav li");
$("ul.nav li");

Thank you. I did try your first suggestion at did not work but the second code worked

$("ul.nav li");