-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmyScript.js
More file actions
54 lines (53 loc) · 1005 Bytes
/
myScript.js
File metadata and controls
54 lines (53 loc) · 1005 Bytes
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
onmouseover="document.getElementById('time')"
const days = document.querySelectorAll('.day')
const rows = document.querySelectorAll('tr')
const colums = document.querySelectorAll('td')
function highlightmon(){
let i = 1
while(i<=11){
rows[i].classList.toggle('mon')
i++
}
}
function highlighttue(){
let i = 1
while(i<=11){
rows[i].classList.toggle('tue')
i++
}
}
function highlightwed(){
let i = 1
while(i<=11){
rows[i].classList.toggle('wed')
i++
}
}
function highlightthu(){
let i = 1
while(i<=11){
rows[i].classList.toggle('thu')
i++
}
}
function highlightfri(){
let i = 1
while(i<=11){
rows[i].classList.toggle('fri')
i++
}
}
function highlightsat(){
let i = 1
while(i<=11){
rows[i].classList.toggle('sat')
i++
}
}
function highlightsun(){
let i = 1
while(i<=11){
rows[i].classList.toggle('sun')
i++
}
}