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.

Theodore Murdock
3,130 PointsHow do you do this???
$("#menu a").each(function(){ var $anchor = $(this); //Create an option var $option = $("<option></option>");
//Problem: It look gross in smaller browser widths and small devices
//Solution: To hide the text links and swap them out with a more appropriate navigation
//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>");
//option's value is the href
//option's text is the text of link
//append option to select
//Create button
//Bind click to button
//Go to select's location
//Modify CSS to hide links on small width and show button and select
//Also hides select and button on larger width and show's links
//Deal with selected options depending on current page
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="css/style.css" type="text/css" media="screen" title="no title" charset="utf-8">
</head>
<body>
<div id="menu">
<ul>
<li class="selected"><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="support.html">Support</a></li>
<li><a href="faqs.html">FAQs</a></li>
<li><a href="events.html">Events</a></li>
</ul>
</div>
<h1>Home</h1>
<p>This is the home page.</p>
<script src="//code.jquery.com/jquery-1.11.0.min.js" type="text/javascript" charset="utf-8"></script>
<script src="js/app.js" type="text/javascript" charset="utf-8"></script>
</body>
</html>
3 Answers

Marcus Parsons
15,717 PointsHey Theodore,
The challenge tells you it just wants you to use the function that goes over each
of the links within "#menu" and pass in an anonymous function. So, all you gotta do is just that!
$("#menu a").each(function () {});

Theodore Murdock
3,130 PointsThank you Marcus. Great answer . . .

Marcus Parsons
15,717 PointsI'm not going to automatically assume that's sarcasm, although the ellipsis at the end do give off the impression of that. The challenge is so straightforward you can't really go into more detail than that unless I explained that an anonymous function is one that doesn't have a name on it. So, it's just function () {}
.

Theodore Murdock
3,130 PointsMarcus, I wasn't meaning to be sarcastic. I meant that your answer was exactly what I needed to allow me to continue. It worked, and I was able to go to the next challenge. Thank you for the help.

Marcus Parsons
15,717 PointsAs I said, I didn't automatically assume it was, although it does give off the appearance of sarcasm. You're welcome.