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 trialyuchiu
6,982 Pointswhy capitalize tagName('LI') in the if statement?
why capitalize tagName('LI') in the if statement? In 5:30, why does is the tag name capitalized instead of lower case? Thank you for you help.
2 Answers
Amir F
9,095 PointsHi!
Because tagName
returns the element name in the uppercase form. From MDN docs:
In XML (and XML-based languages such as XHTML), tagName preserves case. On HTML elements in DOM trees flagged as HTML documents, tagName returns the element name in the uppercase form.
Jonathan Aldas
2,421 Pointsif you put console.log(event.target.tagName); the output to the console is "LI"
Wes Thompson
4,928 PointsWes Thompson
4,928 PointsIt would have been helpful to have had an explanation of this in the video.