forked from marquez.juan/clase-10-ejercicios-de-repaso
ejercicio 2: lista de tareas simples
This commit is contained in:
@@ -1 +1,16 @@
|
||||
// Agregar aquí el código javascript
|
||||
const tareaInput = document.getElementById('tarea');
|
||||
const agregarBtn = document.getElementById('agregar');
|
||||
const listaTareas = document.getElementById('lista-tareas');
|
||||
|
||||
agregarBtn.addEventListener('click', () => {
|
||||
const tarea = tareaInput.value.trim();
|
||||
|
||||
if (tarea === '') {
|
||||
return;
|
||||
}
|
||||
|
||||
const li = document.createElement('li');
|
||||
li.textContent = tarea;
|
||||
listaTareas.appendChild(li);
|
||||
tareaInput.value = '';
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user