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 trialBrady Gorman
Front End Web Development Techdegree Student 7,738 PointsI 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)';
}
});
1 Answer
Steven Parker
231,172 PointsYour'e close, but tag names are always stored internally in upper case. So check for "INPUT" instead of "input".
Br!t B
1,596 PointsBr!t B
1,596 PointsI 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?