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 JavaScript and the DOM (Retiring) Responding to User Interaction The Event Object

why 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
Amir F
9,095 Points

Hi!

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.

Wes Thompson
Wes Thompson
4,928 Points

It would have been helpful to have had an explanation of this in the video.

Jonathan Aldas
Jonathan Aldas
2,421 Points

if you put console.log(event.target.tagName); the output to the console is "LI"