-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (61 loc) · 2.38 KB
/
index.html
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Challenge - DOM</title>
</head>
<body>
<h1>Coba DOM ya</h1>
<div id="app">
<!-- TODO: Buatlah sebuah header dengan id todo-title -->
<header id="todo-title2">To Do List App</header>
<h1 id="todo-title">Hello Header</h1>
<!-- TODO: Buatlah sebuah subtitle dengan id todo-subtitle -->
<h2 id="todo-subtitle">Hello Header</h2>
<!-- Section: input -->
<!-- TODO: Buatlah sebuah input bertipe text dengan id todo-input -->
<input id="todo-input" type="text" />
<!-- TODO: Buatlah sebuah button dengan id todo-submit -->
<button id="todo-submit">SUBMIT</button>
<!-- Section output -->
<!-- TODO: Buatlah sebuah <ul> dengan id todo-output -->
<section>
<ul id="todo-output">
</ul>
</section>
</div>
<!-- ! Untuk tantangan ini, script jangan diubah ke external js yah ! -->
<script>
// TODO: Deklarasi variable sesuai dengan kebutuhan di sini
let button=document.querySelector("#todo-submit");
let input = document.querySelector("#todo-input");
let output = document.querySelector("#todo-output");
// TODO: Buatlah sebuah fungsi dengan nama fnClickHandler
// Fungsi yang digunakan untuk menambahkan tulisan
// Jangan ubah cara deklarasi fungsinya, cukup isi saja
function fnClickHandler(toDoItem) {
let li=document.createElement('li');
li.textContent=toDoItem;
console.log("toDoItem");
output.appendChild(li);
input.value="";
console.log(input);
return input.focus();
}
// TODO: register event onclick / addEventListener untuk button
// akan menjalankan fungsi fnClickHandler
button.addEventListener('click',()=>{
return fnClickHandler(input.value) ;
})
// TODO: register event onkeypress / addEventListener untuk input
// sehingga saat di input ditekan enter akan menjalankan fungsi fnClickHandler juga
input.addEventListener('keypress',(event)=>{
if(event.key==='Enter'){
return fnClickHandler(input.value);
}
})
</script>
</body>
</html>