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

erkany
erkany
7,189 Points

Adding new "Remove" button when we click to "Add Item" button within new <li> element.

How can we add new "Remove" button when we click to "Add Item" button within new <li> element?

addItemButton.addEventListener('click', ()=>{
  let ul = document.getElementsByTagName('ul')[0];
  let li = document.createElement('li');
  //let button = li.createElement('button');
  li.textContent = addItemInput.value;
  //button.textContent = 'Remove';
  //li.appendChild(button);
  ul.appendChild(li);
  addItemInput.value = ''; 
});

I have tried with lines those are commented. But it did not work when I uncommented them.

erkany
erkany
7,189 Points

I've gotten the solution in the next video :)

In line 4: replace "li.createElement" with "document.createElement" And Line 5 must be before Line 4:

So final code will look like below:

addItemButton.addEventListener('click', ()=>{
  let ul = document.getElementsByTagName('ul')[0];
  let li = document.createElement('li');
  li.textContent = addItemInput.value;
  let button = document.createElement('button');
  button.textContent = 'Remove';
  li.appendChild(button);
  ul.appendChild(li);
  addItemInput.value = ''; 
});