forked from iamshaunjp/JavaScript-DOM-Tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.js
More file actions
24 lines (20 loc) · 581 Bytes
/
app.js
File metadata and controls
24 lines (20 loc) · 581 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
const list = document.querySelector('#book-list ul');
// delete books
list.addEventListener('click', (e) => {
if(e.target.className == 'delete'){
const li = e.target.parentElement;
li.parentNode.removeChild(li);
}
});
const forms = document.forms;
console.log(forms);
console.log(forms['add-book']);
Array.from(forms).forEach(function(form){
console.log(form);
});
const addForm = forms['add-book'];
addForm.addEventListener('submit', function(e){
e.preventDefault();
const value = addForm.querySelector('input[type="text"]').value;
console.log(value);
});