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 trialJames Delaplain
5,872 PointsDrop down menu not showing any href text ?
HTML bottom: <div id="menu"> on line 7, load app on line 20: <script src="js/app.js" type="text/javascript" charset="utf-8" App.js ~ //Problem: It looks gross in smaller browser widths and small devices //Solution: To hide the text links and swap them out with a more appropriate navigation with select box or something.
//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.val($anchor.attr("href")); //option's text is the text of the link $option.text($anchor.text()); //append option to select $select.append($option); }); //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
James Delaplain
5,872 PointsHey thanks for asking, i had missed one ; and also the address for Jscript was not correct again... the scrpit src: http://code.jquery.com/jquery-1.11.0.min.js had to be http://code.jquery.com/jquery-1.11.3.min.js to get this to actually work. I found that out a month ago from another module question where I guy said that could be the issue to check. OOO Ill do that now.
LaVaughn Haynes
12,397 PointsLaVaughn Haynes
12,397 PointsDid you find a solution for this yet?