Attempting my first Javascript project, playing around with DOM to make a To-Do List. After adding an item, how do i get the \'Remove\' button to function and remove the ite
You can simply assign event:
removeTask.addEventListener('click', function(e) { node.parentNode.removeChild(node); });
http://jsfiddle.net/g79ssyqv/6/