Skip to content
Advertisement

Problem with targeting created button with addEventListener

I’m learning vanilla JS and trying to make “To-do list” project. So, idea is simple adding values from form into the list. After that I add edit/remove buttons for every li in list and put the addEventListener to that buttons. For some reason, event listener is targeted on button from form. When I click on button to add new item in list, there is click listener that I want on edit button.

I try different ways to target the right button with parentNodes or childNodes, i find the pretty same code as mine but that don’t work for me.

JavaScript
JavaScript

Advertisement

Answer

You need to pass a function in addEventListener, not just code.

JavaScript

Or pass it to editItem

JavaScript
User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement