-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
34 lines (33 loc) · 1.3 KB
/
popup.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Find Hidden Input</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/jquery.dataTables.min.css">
<link rel="stylesheet" href="css/fixedHeader.dataTables.min.css">
<link rel="stylesheet" href="css/app.css">
<script src="js/jquery-3.1.1.min.js"></script>
<script src="js/jquery.dataTables.min.js"></script>
<script src="js/dataTables.fixedHeader.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/popup.js"></script>
</head>
<body>
<div id="container" class="container-fluid" style="padding: 0px;margin: 0px;">
<table id="table" class="table table-bordered table-hover" style="padding: 0px;margin: 0px;">
<thead>
<tr>
<th>#</th>
<th>ID</th>
<th>Name</th>
<th>Class</th>
<th>Value</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</body>
</html>