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 trialLuis Giraldo
Full Stack JavaScript Techdegree Graduate 27,531 PointsIs the last code snippet comment referring to data-toggle-content?
In this part:
// assign the element with the data attribute 'data-toggle-controller' to the variable 'toggler'
var toggler = document.querySelector('[data-toggle-controller]');
// assign the element with the data attribute 'data-toggle-controller' to the variable 'toggledContent'
var toggledContent = document.querySelector('[data-toggle-content]');
Does the last comment refer to assign the element with the data attribute 'data-toggle-content' to the variable? Or I am not understanding well? Because JavaScript is selecting data-toggle-content and not data-toggle-controller.
1 Answer
Steven Parker
231,236 PointsGood eye! You might want to report this as a bug to the staff as described on the Support page.
If you're the first one to do so, you should get the "Exterminator" badge!
Luis Giraldo
Full Stack JavaScript Techdegree Graduate 27,531 PointsLuis Giraldo
Full Stack JavaScript Techdegree Graduate 27,531 PointsThank you Steven Parker, I'll do that.