forked from SelmiAbderrahim/Free-Forum-Template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.js
26 lines (23 loc) · 772 Bytes
/
main.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
//NavBar
function hideIconBar(){
var iconBar = document.getElementById("iconBar");
var navigation = document.getElementById("navigation");
iconBar.setAttribute("style", "display:none;");
navigation.classList.remove("hide");
}
function showIconBar(){
var iconBar = document.getElementById("iconBar");
var navigation = document.getElementById("navigation");
iconBar.setAttribute("style", "display:block;");
navigation.classList.add("hide");
}
//Comment
function showComment(){
var commentArea = document.getElementById("comment-area");
commentArea.classList.remove("hide");
}
//Reply
function showReply(){
var replyArea = document.getElementById("reply-area");
replyArea.classList.remove("hide");
}