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 trialDavid Wicks
5,188 PointsCorrect results refused by task: set the value of the option to be $anchor.attr('href').
I have a working result, and confirmed that the value attribute of the option tags is indeed set to the different href values in the preview by looking at them with Safari's developer tools.
The task response is consistently:
"""
Bummer! The value of the option should be $anchor.attr('href')
.
"""
1 Answer
David Wicks
5,188 PointsThere is a bug in the answer-checker where it considers whitespace in javascript code significant.
I had written:
$option.val( $anchor.attr("href") );
The "correct" answer was:
$option.val($anchor.attr("href"));
It would be great to see a bugfix to the answers checker, since whitespace is not significant in javascript (and it's common style to add spaces around function arguments).