-
Notifications
You must be signed in to change notification settings - Fork 0
/
DJ.js
26 lines (25 loc) · 823 Bytes
/
DJ.js
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
window.onresize = function(){
var img = document.getElementById('header_pic');
img.style.width = "100%";
};
function seeComments(comments){
if (comments.innerHTML==="See Other Comments"){
comments.innerHTML = "Hide Comments";
if (comments.id == "aa"){
document.getElementById("a").style.display="block";
}else if (comments.id == "bb"){
document.getElementById("b").style.display="block";
}else if (comments.id == "cc"){
document.getElementById("c").style.display="block";
}
}else{
comments.innerHTML = "See Other Comments";
if (comments.id == "aa"){
document.getElementById("a").style.display="none";
}else if (comments.id == "bb"){
document.getElementById("b").style.display="none";
}else if (comments.id == "cc"){
document.getElementById("c").style.display="none";
}
}
}