I am new to dev and am working on a little project of creating a worshipper counter app for my local mosque.
When the page loads, I want to show only the h1 and the drop down menu. Once an option selected, I want the counter app to display. I have written the function that will toggle the display using an onchange event. However, this is toggling between displaying and hiding no matter the option selected. I can’t seem to find how to display the counter when any value is selected from the dropdown. Please can someone point me in the right direction?
JavaScript
x
43
43
1
let count = 0
2
let saveEl = document.getElementById("save-el")
3
let countEl = document.getElementById("count-el")
4
let maxCount = document.getElementById("max")
5
6
function display() {
7
let app = document.getElementById("counter")
8
if (app.style.display === "none") {
9
app.style.display = "block";
10
} else {
11
app.style.display = "none";
12
}
13
let value = document.getElementById("prayers").value;
14
document.getElementById("prayerName").textContent = value
15
16
17
}
18
19
function increment() {
20
count++
21
countEl.textContent = count
22
if (count >= 50) {
23
console.log(count)
24
maxCount.textContent = "MAX CAPACITY REACHED!"
25
26
}
27
}
28
29
function subtract() {
30
count--
31
countEl.textContent = count
32
if (count < 50) {
33
maxCount.textContent = ""
34
}
35
}
36
37
function save() {
38
let countStr = count + " - "
39
saveEl.textContent += countStr
40
countEl.textContent = 0
41
count = 0
42
maxCount.textContent = ""
43
}
JavaScript
1
58
58
1
body {
2
background-image: url("zakariyya mosque.png");
3
background-size: cover;
4
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
5
font-weight: bold;
6
text-align: center;
7
}
8
9
h1 {
10
margin-top: 10px;
11
margin-bottom: 10px;
12
}
13
14
h2 {
15
font-size: 50px;
16
margin-top: 0;
17
margin-bottom: 20px;
18
}
19
20
button {
21
border: none;
22
padding-top: 10px;
23
padding-bottom: 10px;
24
color: white;
25
font-weight: bold;
26
width: 200px;
27
margin-bottom: 5px;
28
border-radius: 5px;
29
}
30
31
#increment-btn {
32
background: blue;
33
}
34
35
#subtract-btn {
36
background: darkred;
37
}
38
39
#save-btn {
40
background: darkgreen;
41
}
42
43
#max {
44
color: crimson;
45
animation: animate 1.5s linear infinite;
46
}
47
48
@keyframes animate {
49
0% {
50
opacity: 0;
51
}
52
/* 50% {
53
opacity: 1;
54
} */
55
100% {
56
opacity: 1;
57
}
58
}
JavaScript
1
28
28
1
<h1>COVID19 MUSALLEE COUNTER:</h1>
2
3
<label for="prayers">Please select prayer:</label>
4
<select name="prayers" id="prayers" onchange="display()">
5
<option></option>
6
<option value="Fajr">Fajr</option>
7
<option value="Zohar">Zohar</option>
8
<option value="Asar">Asar</option>
9
<option value="Magrib">Magrib</option>
10
<option value="Isha">Isha</option>
11
</select>
12
<h3 id="prayerName"></h3>
13
<br><br>
14
15
<!-- COUNTER APP HTML -->
16
<div id="counter">
17
<h2 id="count-el">0</h2>
18
<h2 id="max"></h2>
19
<button id="increment-btn" onclick="increment()">ADD</button>
20
<button id="subtract-btn" onclick="subtract()">SUBTRACT</button>
21
<button id="save-btn" onclick="save()">SAVE</button>
22
<p id="save-el">Previous entries: </p>
23
<p id="fajr">Fajr:</p>
24
<p id="zohar">Zohar:</p>
25
<p id="asar">Asar:</p>
26
<p id="magrib">Magrib:</p>
27
<p id="isha">Isha:</p>
28
</div>
Many thanks in advance! 🙂
Advertisement
Answer
You can take advantage of your “empty” option in the select so that display() can detect that:
JavaScript
1
45
45
1
let count = 0
2
let saveEl = document.getElementById("save-el")
3
let countEl = document.getElementById("count-el")
4
let maxCount = document.getElementById("max")
5
6
function display() {
7
let app = document.getElementById("counter")
8
if (document.getElementById("prayers").value){
9
app.style.display = "block";
10
} else {
11
app.style.display = "none";
12
}
13
let value = document.getElementById("prayers").value;
14
document.getElementById("prayerName").textContent = value
15
16
17
}
18
19
function increment() {
20
count++
21
countEl.textContent = count
22
if (count >= 50) {
23
console.log(count)
24
maxCount.textContent = "MAX CAPACITY REACHED!"
25
26
}
27
}
28
29
function subtract() {
30
count--
31
countEl.textContent = count
32
if (count < 50) {
33
maxCount.textContent = ""
34
}
35
}
36
37
function save() {
38
let countStr = count + " - "
39
saveEl.textContent += countStr
40
countEl.textContent = 0
41
count = 0
42
maxCount.textContent = ""
43
}
44
45
display()
JavaScript
1
58
58
1
body {
2
background-image: url("zakariyya mosque.png");
3
background-size: cover;
4
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
5
font-weight: bold;
6
text-align: center;
7
}
8
9
h1 {
10
margin-top: 10px;
11
margin-bottom: 10px;
12
}
13
14
h2 {
15
font-size: 50px;
16
margin-top: 0;
17
margin-bottom: 20px;
18
}
19
20
button {
21
border: none;
22
padding-top: 10px;
23
padding-bottom: 10px;
24
color: white;
25
font-weight: bold;
26
width: 200px;
27
margin-bottom: 5px;
28
border-radius: 5px;
29
}
30
31
#increment-btn {
32
background: blue;
33
}
34
35
#subtract-btn {
36
background: darkred;
37
}
38
39
#save-btn {
40
background: darkgreen;
41
}
42
43
#max {
44
color: crimson;
45
animation: animate 1.5s linear infinite;
46
}
47
48
@keyframes animate {
49
0% {
50
opacity: 0;
51
}
52
/* 50% {
53
opacity: 1;
54
} */
55
100% {
56
opacity: 1;
57
}
58
}
JavaScript
1
28
28
1
<h1>COVID19 MUSALLEE COUNTER:</h1>
2
3
<label for="prayers">Please select prayer:</label>
4
<select name="prayers" id="prayers" onchange="display()">
5
<option></option>
6
<option value="Fajr">Fajr</option>
7
<option value="Zohar">Zohar</option>
8
<option value="Asar">Asar</option>
9
<option value="Magrib">Magrib</option>
10
<option value="Isha">Isha</option>
11
</select>
12
<h3 id="prayerName"></h3>
13
<br><br>
14
15
<!-- COUNTER APP HTML -->
16
<div id="counter">
17
<h2 id="count-el">0</h2>
18
<h2 id="max"></h2>
19
<button id="increment-btn" onclick="increment()">ADD</button>
20
<button id="subtract-btn" onclick="subtract()">SUBTRACT</button>
21
<button id="save-btn" onclick="save()">SAVE</button>
22
<p id="save-el">Previous entries: </p>
23
<p id="fajr">Fajr:</p>
24
<p id="zohar">Zohar:</p>
25
<p id="asar">Asar:</p>
26
<p id="magrib">Magrib:</p>
27
<p id="isha">Isha:</p>
28
</div>