-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathJS007.html
More file actions
26 lines (25 loc) · 745 Bytes
/
JS007.html
File metadata and controls
26 lines (25 loc) · 745 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
25
26
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Form Dealings</title>
</head>
<body>
<form action="php.send">
<label for="check">
<input type="checkbox">Yes!
</label>
</form>
<div>
<p>First Paragraph</p>
<p>Last Paragraph</p>
</div>
<script>
var box=document.querySelector('input');
box.setAttribute('checked', 'checked');
var myDiv=document.querySelector('div'); //This is used to remove items
myDiv.removeChild(myDiv.children[0]);
</script>
</body>
</html>