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!
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

Phil White
Courses Plus Student 9,519 PointsChallenge task 1 of 1 jQuery Basics Creating a mobile drop down menu
Hi stuck on this question?
On line 9 of app.js, use the method we used to cycle over each of the menu links. Pass in an anonymous function too.
Here's the code i'm adding onto line 9
.each(function)(){
var $anchor = $(this);
var $option = $("<option></option>");
$option.val($anchor.attr("href"));
$option.text($anchor.text());
$select.append($option);
});
Any help appreciated thx
4 Answers

Andrew Shook
31,709 PointsPhil, you need to remove the extra closing parentheses right after the word "function" :
$("#menu a").each( function(){ ...
not:
$("#menu a").each( function ) (){...

MUZ140742 Takura Masunda
5,737 Points$("#menu a").each( function () { });

MUZ140742 Takura Masunda
5,737 PointsThis one worked for me

Phil White
Courses Plus Student 9,519 PointsAwesome it worked! Thank you Andrew, the help is really appreciated!

MUZ140015 Priscilla Moyo
9,790 Points$("#menu a").each( function () { });
Phil White
Courses Plus Student 9,519 PointsPhil White
Courses Plus Student 9,519 PointsAnd this is the code before i add anything