-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathscript.js
46 lines (38 loc) · 1.39 KB
/
script.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
let button = document.getElementById("button1");
let input1 = document.getElementById("input1");
// Function to add a task
function show() {
if (input1.value === "") {
input1.value = "task not entered";
setTimeout(() => input1.value = "", 500);
} else {
var newh = document.createElement("span");
var checkbox = document.createElement("input");
var crossButton = document.createElement("button");
checkbox.type = "checkbox";
crossButton.innerHTML = "✖";
newh.innerHTML = input1.value;
const items = document.querySelector('.item_list');
const item = document.createElement('div');
item.setAttribute('class', 'item');
item.appendChild(checkbox);
item.appendChild(newh);
item.appendChild(crossButton);
items.appendChild(item);
input1.value = "";
checkbox.addEventListener('change', () => {
items.removeChild(item);
});
crossButton.addEventListener('click', () => {
newh.style.textDecoration = "line-through";
});
}
}
// Add event listener to the button
button.addEventListener('click', show);
// Add event listener to the input field for the Enter key
input1.addEventListener('keydown', function(event) {
if (event.key === 'Enter') {
show();
}
});