Created
March 16, 2020 08:04
-
-
Save veekthoven/d40a913dda5ee4e5a5943dea9d934092 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<script> | |
setTimeout( | |
function() { | |
todos = document.querySelectorAll('li'); | |
console.log(todos) | |
todos.forEach((todo, index) => { | |
todo.addEventListener( 'click', event => { | |
event.target.style = 'text-decoration: line-through'; | |
alert( 'Item ' + (index + 1) + ': "' + event.target.innerText + '" is done!' ); | |
} ); | |
}); | |
}, | |
10 | |
); | |
</script> | |
</head> | |
<body> | |
<ul id="todo-app"> | |
<li class="todo">Walk the dog</li> | |
<li class="todo">Pay bills</li> | |
<li class="todo">Make dinner</li> | |
<li class="todo">Code for one hour</li> | |
</ul> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment