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 trialMIAN OSAMA ARSHAD
Courses Plus Student 1,569 PointsUncaught TypeError: Cannot set property 'color' of undefined at script.js:22
const myTag=document.getElementsByClassName('wrong-error'); myTag.style.color='red'; <!--html--> <ul> <li class="wrong-error">amethyst</li> </ul> <script src="script.js"></script>
1 Answer
Jesus Mendoza
23,289 PointsHey,
documents.getElementByClassName returns an array. You should access the element you want to style by using the brackets notation "[index]".
myTag[0].style.color = "Red";
MIAN OSAMA ARSHAD
Courses Plus Student 1,569 PointsMIAN OSAMA ARSHAD
Courses Plus Student 1,569 Pointsthanks its working :)
Ivan Chudyk
4,103 PointsIvan Chudyk
4,103 PointsGracias tio me salvaste!