-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathNE112.html
More file actions
121 lines (95 loc) · 4.73 KB
/
NE112.html
File metadata and controls
121 lines (95 loc) · 4.73 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
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<link rel = "stylesheet" type = "text/css" href = "myindexstyleorg.css">
<link rel = "stylesheet" type = "text/css" href = "tablestyle2.css">
<html>
<div id = "container">
<head>
<div class = "title">
<title>TheNanoScribe</title>
</div>
</head>
<body class = "homepage">
<header class = "navbar">
<a id = "logo" href = "index.html"><strong>TheNanoScribe</strong></a>
<nav>
<ul class = "nav_options">
<li><a href = "first_year.html">First Year</a></li>
<li><a href = "second_year.html">Second Year</a></li>
<li><a href = "third_year.html">Third Year</a></li>
<li><a href = "fourth_year.html">Fourth Year</a></li>
<!-- <li><a href = #>Coop</a></li>
<li><a href = #>2B</a></li>
<li><a href = #>Coop</a></li>
<li><a href = #>Coop</a></li>
<li><a href = #>3A</a></li>
<li><a href = #>3B</a></li>
<li><a href = #>Coop</a></li>
<li><a href = #>Coop</a></li>
<li><a href = #>4A</a></li>
<li><a href = #>4B</a></li> -->
</ul>
</nav>
</header>
</body>
</div>
<br><br><br><br><br>
<h1><span class="blue"><</span>NE112 Course Content<span class="blue">></span> <span class="yellow"></pan></h1>
<br><br>
<table class="containertable">
<thead>
<tr>
<th><h1>Course</h1></th>
<th><h1>Content Content</h1></th>
</tr>
</thead>
<tbody>
<tr>
<td>NE112</td>
<td onclick="window.location.href = 'linalg/linalgcoursenotes.html'">Course Notes</td>
</tr>
<tr>
<td>NE112</td>
<td onclick="window.location.href = 'linalg/linalgassignments.html'">Assignments</td>
</tr>
<tr>
<td>NE112</td>
<td onclick="window.location.href = 'linalg/linalgmidterm.html'">Midterm</td>
</tr>
<tr>
<td>NE112</td>
<td onclick="window.location.href = 'linalg/linalgmidtermsol.html'">Midterm Solutions</td>
</tr>
<tr>
<td>NE112</td>
<td onclick="window.location.href = 'linalg/linalgfinal.html'">Final</td>
</tr>
<tr>
<td>NE112</td>
<td onclick="window.location.href = 'linalg/linalgvideos.html'">Videos</td>
</tr>
<tr>
<td>NE112</td>
<td onclick="window.location.href = 'linalg/linalgformulasheet.html'">Formula Sheet</td>
</tr>
<tr>
<td>NE112</td>
<td onclick="window.location.href = 'linalg/linalgadditional.html'">Additional Reading</td>
</tr>
</tbody>
</table>
<script>
// document.addEventListener("DOMContentLoaded", () => {
// const rows = document.querySelectorAll("tr[data-href]");
// rows.forEach(row => {
// row.addEventListener("click", ()=> {
// window.location.href = row.dataset.href;
// });
// });
// });
$(document).ready(function () {
$(document.body).on("click", "tr[data-href]", function() {
window.location.href = this.dataset.href;
});
});
</script>
</html>