-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
88 lines (71 loc) · 2.69 KB
/
script.js
File metadata and controls
88 lines (71 loc) · 2.69 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
$(document).on('click','button#backButton',function(){
window.location ="index.html"
});
$(document).on('click','button#pickAnotherAnimal',function(){
$('div#animalPick').show();
$('button#pickAnotherAnimal').hide();
$('button#backButton').show();
$('div#rhino').hide();
$('div#greyWhale').hide();
$('div#polarBear').hide();
})
$(document).on('click','button#infoButton',function(){
window.location="info.html";
});
$(document).on('click','button#infoButton',function(){
window.location="info.html";
});
$(document).on('click','button#creditButton',function(){
window.location="credit.html";
});
$(document).on('click','button#LauraWoodbury',function(){
window.location ="https://www.pexels.com/@laura-woodbury-1342512"
});
$(document).on('click','button#RoxanneMinnish',function(){
window.location ="https://www.pexels.com/@roxanne-minnish-2936023"
});
$(document).on('click','button#Pixabay',function(){
window.location ="https://www.pexels.com/@pixabay"
});
$(document).on('click','button#iucnredlistOrg',function(){
window.location ="https://www.iucnredlist.org/species/712/121745669"
});
$(document).on('click','button#VanHeerden',function(){
window.location ="https://www.pexels.com/@frans-van-heerden-201846"
});
$(document).on('click','button#MagdaEhlers',function(){
window.location ="https://www.pexels.com/video/sea-otters-swimming-2554522/"
});
$(document).on('click','button#rhinoFacts',function(){
window.location="https://www.livescience.com/27439-rhinos.html#:~:text=White%20rhinos%20and%20black%20rhinos,Indonesian%20swamps%20and%20rain%20forests."
})
$(document).on('click','button#greyWhaleFacts',function(){
window.location="https://www.fisheries.noaa.gov/species/gray-whale#:~:text=Gray%20whales%20are%20found%20mainly,the%20coast%20of%20eastern%20Asia."
})
$(document).on('click','button#polarBearFacts',function(){
window.location="https://www.nwf.org/Educational-Resources/Wildlife-Guide/Mammals/Polar-Bear#:~:text=They%20mainly%20eat%20ringed%20seals,eat%20walruses%20and%20whale%20carcasses."
})
$(document).on('click','button#button1',function(){
$('div#animalPick').hide();
$('button#backButton').hide();
$('button#pickAnotherAnimal').show();
$('div#rhino').show();
});
$(document).on('click','button#button2',function(){
$('div#animalPick').hide();
$('button#backButton').hide();
$('button#pickAnotherAnimal').show();
$('div#greyWhale').show();
});
$(document).on('click','button#button3',function(){
$('div#animalPick').hide();
$('button#backButton').hide();
$('button#pickAnotherAnimal').show();
$('div#polarBear').show();
});
$(document).ready(function(){
$('button#pickAnotherAnimal').hide();
$('div#rhino').hide();
$('div#greyWhale').hide();
$('div#polarBear').hide();
});