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 trialJohn Harles
20,614 Pointsperform: changing classes challenge task 1
This is a code challenge task 1 after completing interactive JavaScript Perform: changing classes. I can't figure out why I keep getting an error when trying to answer this question. I checked the Mozilla site and looked up the classList method. I looked at the examples and believe what I'm doing is correctly. So I must be missing something. Any help will be helpful.
Thanks John
var anchor = document.querySelector("a");
//Add the class to the classList "selected"
anchor.classList.add(selector);
//Toggle the class "live"
<!DOCTYPE html>
<html>
<body>
<a href="#">Home</a>
<script src="app.js"></script>
</body>
</html>
John Harles
20,614 PointsJohn Harles
20,614 PointsDon't worry about this question. The code you see is when I was expermenting and is not what I uses as an answer. I retyped the code and it worked. The answer to task 1 was
anchor.classList.add("selected");
Sorry. - John