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 trial

JavaScript CSS Selectors Quickstart The Role of Selectors in JavaScript Custom Data Attributes

Is 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
Steven Parker
229,783 Points

Good 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" :beetle: badge!

Thank you Steven Parker, I'll do that.