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 trialmattiapontonio
14,991 PointsIt looks like Task 1 is no longer passing
Hello, i'm trying to pass the challenge ( /library/javascript-and-the-dom-2/traversing-the-dom/child-traversal ). The Task 1 passed but when I try to submit the Task 2, I get the error into the subject. Should You help me to find the error? Regards Mattia
const section = document.querySelector('section');
let paragraphs = section.children;
for (i=0; i<paragraphs.lenght; i++){
if (paragraphs[i].tagName = "P"){
paragraphs[i].style.color = "blue";
}
}
<!DOCTYPE html>
<html>
<head>
<title>Child Traversal</title>
</head>
<body>
<section>
<p>This is the first paragraph</p>
<p>This is a slightly longer, second paragraph</p>
<p>Shorter, last paragraph</p>
</section>
<footer>
<p>© 2016</p>
</footer>
<script src="app.js"></script>
</body>
</html>
1 Answer
Steven Parker
231,269 PointsI see two issues:
- you didn't declare the index variable in the for loop (use "
let i=0
" instead of just "i=0
") - you wrote "lenght" instead of "length"
mattiapontonio
14,991 Pointsmattiapontonio
14,991 PointsHello Steven, thank you very much for your reply. Now it works! Best regards Mattia