TODO -Liste in JQuery
$toDoList.on( "click", ".delete-button", function(){
$(this).parent().remove();
});
$completedList.on( "click", ".delete-button", function(){
$(this).parent().remove();
});
Puzzled Pollan