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 Interacting with the DOM Traversing the DOM Event Delegation

Brady Gorman
seal-mask
.a{fill-rule:evenodd;}techdegree
Brady Gorman
Front End Web Development Techdegree Student 7,738 Points

I don't understand what they want...

Based on the previous video isn't this what they want?

let section = document.getElementsByTagName('section')[0];

section.addEventListener('click', (e) => {
  if(e.target.tagName === 'input') {
  e.target.style.backgroundColor = 'rgb(255, 255, 0)';
     }
});

I apologize if this is not correct, but do you think it could be a syntax error? The last closing parenthesis after the curly brace before the semi colon?

1 Answer

Steven Parker
Steven Parker
229,771 Points

Your'e close, but tag names are always stored internally in upper case. So check for "INPUT" instead of "input".