-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtest.html
More file actions
73 lines (66 loc) · 1.8 KB
/
test.html
File metadata and controls
73 lines (66 loc) · 1.8 KB
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<title>Testing the Microphone</title>
<style type="text/css" media="screen">
tr.selected { background: yellow; }
</style>
<script type="text/javascript" src="jquery-1.4.2.js" charset="utf-8"></script>
<script type="text/javascript" src="jquery.shift-select-table.js" charset="utf-8"></script>
<script type="text/javascript" charset="utf-8">
$(function() {
$("#test-table").shiftSelectTable();
});
</script>
</head>
<body>
<table border="0" cellspacing="5" cellpadding="5" id="test-table">
<tr>
<th> </th>
<th>Header</th></tr>
<tr>
<td><input type="checkbox" id="inside-1"/></td>
<td>Data 1</td>
</tr>
<tr>
<td><input type="checkbox" id="inside-2" checked="checked"/></td>
<td>Data 2</td>
</tr>
<tr>
<td><input type="checkbox" id="inside-3"/></td>
<td>Data 3</td>
</tr>
<tr>
<td><input type="checkbox" id="inside-4"/></td>
<td>Data 4</td>
</tr>
<tr>
<td><input type="checkbox" id="inside-5"/></td>
<td>Data 5</td>
</tr>
<tr>
<td><input type="checkbox" id="inside-6"/></td>
<td>Data 6</td>
</tr>
<tr>
<td><input type="checkbox" id="inside-7"/></td>
<td>Data 7</td>
</tr>
<tr>
<td><input type="checkbox" id="inside-8"/></td>
<td>Data 8</td>
</tr>
<tr>
<td><input type="checkbox" id="inside-9"/></td>
<td>Data 9</td>
</tr>
<tr>
<td><input type="checkbox" id="inside-10"/></td>
<td>Data 10</td>
</tr>
</table>
<div style="display: none"><input type="checkbox" id="outside-1"/></div>
</body>
</html>