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 trialRussell Davidson
2,225 Points$select.append is not a function
I made my code exactly the same as in the video. When I try to run it, I get an error that says "$select.append is not a function" and the select doesn't work. My code is exactly the same as the example in the video. Why do I get this error?
3 Answers
Akosua Kernizan
19,994 Pointsyour problem is that you did not create a jQuery element. (you're missing the $)
you have
var $select = ("<select></select>")
but you need
var $select = $("<select></select>")
Ryan Dowdy
11,465 PointsHello! Can you please post your code exactly as you wrote it?
Russell Davidson
2,225 Points// 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.
// 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")); // options text is the text of 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 widths and show's links // Deal with selected options depending on current page
Russell Davidson
2,225 PointsLet me try again
// 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.
// 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")); // options text is the text of link $option.text($anchor.text()); // append option to select $select.append($option); });