-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
92 lines (71 loc) · 2.41 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html>
<head>
<title>Filter JavaScript</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" >
<style type="text/css">
ul {
list-style: none;
}
ul li{
display: inline-block;
margin-right: 20px;
}
#pouss {
margin-left: 10%;
margin-top: 2%;
}
.under{
text-decoration: underline;
}
</style>
<body>
<div class="mb-4" id="pouss"><b> ChekerJS plugin (By Franck da COSTA) </b> </div>
<div class="container mb-4"> <h5 class="under">FILTER LISTE</h5> </div>
<div id="page-wrapper" class="container">
<div id="wrapper2">
<ul class="mb-4">
<li> <input type="checkbox" class="etiquette" id="doc" name="checkbox" value="Document" onchange="filtrage(this)">
<label for="doc">Document</label> </li>
<li> <input type="checkbox" class="etiquette" id="vid" name="checkbox" value="Video" onchange="filtrage(this)">
<label for="vid">Video</label> </li>
<li> <input type="checkbox" class="etiquette" id="im" name="checkbox" value="Image" onchange="filtrage(this)">
<label for="im">Image</label> </li>
<li> <input type="checkbox" class="etiquette" id="aut" name="checkbox" value="Autre" onchange="filtrage(this)">
<label for="aut">Autre</label> </li>
</ul>
</div>
</div>
<div class="container">
<h5 class="under mb-4">TABLE HTML </h5>
<table class="table table-dark table-striped">
<thead>
<th>Nom fichier</th>
<th>Auteur</th>
<th>Type</th>
</thead>
<tr class="Document Autre">
<td>CV_Linkedin.pdf</td>
<td>Morel</td>
<td>Document-Autre</td>
</tr>
<tr class="Document">
<td>Bulletion_2020</td>
<td>Morel</td>
<td>Document</td>
</tr>
<tr class="Video">
<td>Excursion.avi</td>
<td>Donal</td>
<td>Video</td>
</tr>
<tr class="Autre">
<td>index.php</td>
<td>Franck</td>
<td>Autre</td>
</tr>
</table>
</div>
</body>
<script type="text/javascript" src="ChekerJs.js"></script>
</html>