-
Notifications
You must be signed in to change notification settings - Fork 0
/
mainPage.html
86 lines (81 loc) · 1.76 KB
/
mainPage.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
77
78
79
80
81
82
83
84
85
86
<html>
<head>
<title>Selectors and Options</title>
<link rel="stylesheet" type="text/css" href="style.css">
<script src="codePage.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
</head>
<body>
<div id = "container">
<div class = "select">
<p>Select A type</p>
<select id="selectA"></select>
<button id="btnA" type="button">Remove filter</button>
</div>
<div class = "select">
<p>Select B type</p>
<select id="selectB"></select>
<button id="btnB" type="button">Remove filter</button>
</div>
<div class = "select">
<p>Select C type</p>
<select id="selectC"></select>
<button id="btnC" type="button">Remove filter</button>
</div>
<table id = "myTable">
<tr>
<td>A1</td>
<td>B1</td>
<td>C1</td>
</tr>
<tr>
<td>A1</td>
<td>B1</td>
<td>C2</td>
</tr>
<tr>
<td>A1</td>
<td>B1</td>
<td>C3</td>
</tr>
<tr>
<td>A1</td>
<td>B2</td>
<td>C4</td>
</tr>
<tr>
<td>A1</td>
<td>B2</td>
<td>C5</td>
</tr>
<tr>
<td>A1</td>
<td>B3</td>
<td>C6</td>
</tr>
<tr>
<td>A2</td>
<td>B4</td>
<td>C7</td>
</tr>
<tr>
<td>A2</td>
<td>B5</td>
<td>C8</td>
</tr>
<tr>
<td>A2</td>
<td>B5</td>
<td>C9</td>
</tr>
<tr>
<td>A3</td>
<td>B6</td>
<td>C10</td>
</tr>
</table>
</div>
</body>
</html>