-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathscript.js
More file actions
32 lines (32 loc) · 1 KB
/
Copy pathscript.js
File metadata and controls
32 lines (32 loc) · 1 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
$(document).ready(function() {
$("#header_subtitle").mouseover(function() {
$("#header_subtitle").text("Berkeley - Team LiveMau5");
});
$("#header_subtitle").mouseleave(function() {
$("#header_subtitle").text("A record of our robot building experience");
});
$("#description_header").click(function() {
$("#description_sect").toggle();
});
$("#parts_header").click(function() {
$("#parts_sect").toggle();
});
$("#building_header").click(function() {
$("#building_sect").toggle();
});
$("#wiring_header").click(function() {
$("#wiring_sect").toggle();
});
$("#challenges_header").click(function() {
$("#challenges_sect").toggle();
});
$("#operations_header").click(function() {
$("#operations_sect").toggle();
});
$("#setup_header").click(function() {
$("#setup_sect").toggle();
});
$("#algorithms_header").click(function() {
$("#algorithms_sect").toggle();
});
});