-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
40 lines (39 loc) · 759 Bytes
/
test.html
File metadata and controls
40 lines (39 loc) · 759 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<html>
<head>
<script type="text/javascript" src="js/jQuery.js"></script>
<script type="text/javascript" src="js/jquery-ui-1.7.2.custom.js"></script>
<script type="text/javascript" src="js/jquery.tablesorter.mod.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#tabelkazwynikiem").tablesorter();
});
</script>
<link rel="stylesheet" type="text/css" href="css/deployment.css" />
</head>
<body>
<center>
<table id="tabelkazwynikiem" border="1">
<thead>
<tr>
<th>ID</th>
<th>Name</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Piotr</td>
</tr>
<tr class="expand-child">
<td>1.5</td>
<td>Piotr.5</td>
</tr>
<tr>
<td>2</td>
<td>Andrzej</td>
</tr>
</tbody>
</table>
</center>
</body>
</html>