-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (58 loc) · 1.18 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
<!DOCTYPE html>
<html>
<head>
<title>Table column switch • By Springload</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="table-column-switcher.css" />
</head>
<body>
<h1>Table column switch</h1>
<table data-column-switch data-column-switch-cols='2 3' data-column-switch-default-col='3'>
<thead>
<tr>
<th>Thing</th>
<th>Market value</th>
<th>Total cost</th>
</tr>
</thead>
<tbody>
<tr>
<th>Thing 1</th>
<td>1A</td>
<td>1B</td>
</tr>
<tr>
<th>Thing 2</th>
<td>2A</td>
<td>2B</td>
</tr>
</tbody>
</table>
<br>
<br>
<table data-column-switch data-column-switch-cols='2 3' data-column-switch-default-col='2'>
<thead>
<tr>
<th>Thing</th>
<th>Market value</th>
<th>Total cost</th>
</tr>
</thead>
<tbody>
<tr>
<th>Thing 1</th>
<td>1A</td>
<td>1B</td>
</tr>
<tr>
<th>Thing 2</th>
<td>2A</td>
<td>2B</td>
</tr>
</tbody>
</table>
<p><small>Made by <a href="http://twitter.com/brentneave">Brent</a> at <a href="https://github.com/springload">Springload</a>.</small></p>
<script src="table-column-switcher.js"></script>
</body>
</html>