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 Traversing up the DOM with parentNode

Jesse Benedict
PLUS
Jesse Benedict
Courses Plus Student 4,260 Points

My solution beforehand adding the remove fn to the attached buttons

Although it's great to know that I can manipulate the children through bubbling, I added remove.addEventListener('click', () => {list.removeChild(li);} ) inside the attach fn instead for simpler readability.

// fn to add del button to every item on the list
const AddDelButton = (li) => {
    let remove = document.createElement('button');
    remove.addEventListener('click', () => {list.removeChild(li);} ) // this
    remove.className = 'remove';
    remove.textContent = 'Remove';
    li.appendChild(remove);
} 

1 Answer

Steven Parker
Steven Parker
230,274 Points

It's a bit of a tradeoff, since a single delegated handler might simplify debugging.

Plus, once you get more accustomed to using them, delegated handlers won't seem any more complicated than individual ones when reading the code.