-
Notifications
You must be signed in to change notification settings - Fork 0
/
demo.html
103 lines (87 loc) · 1.56 KB
/
demo.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
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html>
<head>
<title>Responsive Table Headers Demo</title>
<meta name="viewport" content="width=device-width,initial-scale=1">
<style>
td .head { display: none; }
@media (max-width: 30em) {
thead { display: none; }
td { display: block; }
td .head { display: inline; }
tr { display: block; margin-bottom: 1em; }
}
</style>
</head>
<body>
<h2>O.C. Supertones Discography</h2>
<table>
<thead>
<tr>
<th>Title</th>
<th>Year</th>
<th>Type</th>
</tr>
</thead>
<tbody>
<tr>
<td>Adventures of the O.C. Supertones</td>
<td>1996</td>
<td>Studio</td>
</tr>
<tr>
<td>Supertones Strike Back</td>
<td>1997</td>
<td>Studio</td>
</tr>
<tr>
<td>Loud and Clear</td>
<td>2000</td>
<td>Studio</td>
</tr>
<tr>
<td>Live! Volume One</td>
<td>2002</td>
<td>Live</td>
</tr>
<tr>
<td>Hi-Fi Revival</td>
<td>2002</td>
<td>Studio</td>
</tr>
<tr>
<td>Revenge of the O.C. Supertones</td>
<td>2004</td>
<td>Studio</td>
</tr>
<tr>
<td>Unite</td>
<td>2005</td>
<td>Compilation</td>
</tr>
<tr>
<td>Faith of a Child</td>
<td>2005</td>
<td>Compilation</td>
</tr>
<tr>
<td>Re-Unite</td>
<td>2010</td>
<td>Compilation</td>
</tr>
<tr>
<td>For The Glory</td>
<td>2012</td>
<td>Studio</td>
</tr>
</tbody>
</table>
<script src="http://code.jquery.com/jquery.min.js"></script>
<script src="jquery.responsive_table_headers.min.js"></script>
<script>
$(document).ready(function() {
$('table').responsive_table_headers();
});
</script>
</body>
</html>