Bummer! You have been redirected as the page you requested could not be found.

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

General Discussion

On line 15 of app.js, I am trying to see if the parent of the link has the class of '.selected' but it isn't working. He

if ($anchor .parent().hasClass(".selected")) { $option; whats the problem here

You could link your challange with the "Get help" Button in the challange. Without the challange it is hard to help you

3 Answers

What about $(anchor).parent().hasClass("selected"). I am not sure what the context is so it's hard to fully answer

//Create a select and append to #menu var $select = $("<select></select>"); $("#menu").append($select);

//Cycle over menu links $("#menu a").each(function(){ var $anchor = $(this); //Create an option var $option = $("<option></option>");

//Deal with selected options depending on current page if($anchor.parent().hasClass(".selected")) { $option; } //option's value is the href $option.val($anchor.attr("href")); //option's text is the text of link $option.text($anchor.text()); //append option to select $select.append($option); }); //Create button var $button = $("<button>Go</button>"); $("#menu").append($button); //Bind click to button $button.click(function(){ //Go to select's location window.location = $select.val(); });

here is the full code I don't know if this is helpful or not