-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript05.html
92 lines (91 loc) · 1.72 KB
/
script05.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
<!DOCTYPE html>
<html>
<head>
<title>Sorted Tables</title>
<link rel="stylesheet" href="styles/script04.css">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.js"></script>
<script src="scripts/jquery.tablesorter.js"></script>
<script src="scripts/script05.js"></script>
</head>
<body>
<!--
This file and all linked files copied from "JavaScript: Visual QuickStart Guide, 8th Edition," chapter 15, for demonstration purposes
http://www.peachpit.com/store/javascript-visual-quickstart-guide-9780321772978
-->
<h1>Beatles Discography</h1>
<table id="theTable">
<thead>
<tr>
<th>Album</th>
<th>Year</th>
<th>Label</th>
</tr>
</thead>
<tr>
<td>Please Please Me</td>
<td>1963</td>
<td>Parlophone</td>
</tr>
<tr>
<td>With The Beatles</td>
<td>1963</td>
<td>Parlophone</td>
</tr>
<tr>
<td>A Hard Day's Night</td>
<td>1964</td>
<td>Parlophone</td>
</tr>
<tr>
<td>Beatles for Sale</td>
<td>1964</td>
<td>Parlophone</td>
</tr>
<tr>
<td>Help!</td>
<td>1965</td>
<td>Parlophone</td>
</tr>
<tr>
<td>Rubber Soul</td>
<td>1965</td>
<td>Parlophone</td>
</tr>
<tr>
<td>Revolver</td>
<td>1966</td>
<td>Parlophone</td>
</tr>
<tr>
<td>Sgt. Pepper's Lonely Hearts Club Band</td>
<td>1967</td>
<td>Parlophone</td>
</tr>
<tr>
<td>Magical Mystery Tour</td>
<td>1967</td>
<td>Capitol</td>
</tr>
<tr>
<td>The Beatles</td>
<td>1968</td>
<td>Apple</td>
</tr>
<tr>
<td>Yellow Submarine</td>
<td>1969</td>
<td>Apple</td>
</tr>
<tr>
<td>Abbey Road</td>
<td>1969</td>
<td>Apple</td>
</tr>
<tr>
<td>Let It Be</td>
<td>1970</td>
<td>Apple</td>
</tr>
</table>
</body>
</html>