Reputation: 1220
I am using a simple javascript accordion to open/close list items as follows. Is it possible to make sure ALL open list items close when a new one is opened (instead of the current way which leaves every list item open until it is manually closed)?
CODEPEN HERE:
https://codepen.io/anon/pen/zejJpJ
JS
var acc = document.getElementsByClassName("accordion");
var i;
for (i = 0; i < acc.length; i++) {
acc[i].addEventListener("click", function () {
this.classList.toggle("active");
var panel = this.nextElementSibling;
if (panel.style.maxHeight) {
panel.style.maxHeight = null;
} else {
panel.style.maxHeight = panel.scrollHeight + "px";
}
});
}
HTML
<ul class="track-listing">
<li>
<button class="accordion">TITLE</button>
<div class="panel">
<p>Panel content</p>
</div>
</li>
<li>
<button class="accordion">TITLE</button>
<div class="panel">
<p>Panel content</p>
</div>
</li>
<li>
<button class="accordion">TITLE</button>
<div class="panel">
<p>Panel content</p>
</div>
</li>
</ul>
Upvotes: 4
Views: 362
Reputation: 746
Yes you can, by closing all other accordions before opening a new one:
for (var j = 0; j < acc.length; j++) {
var button = acc[j];
if (button === this) continue;
button.classList.remove("active");
var panel = button.nextElementSibling;
panel.style.maxHeight = null;
}
var acc = document.getElementsByClassName("accordion");
for (var i = 0; i < acc.length; i++) {
acc[i].addEventListener("click", function() {
// Close all other accordions
for (var j = 0; j < acc.length; j++) {
var button = acc[j];
if (button === this) continue;
button.classList.remove("active");
var panel = button.nextElementSibling;
panel.style.maxHeight = null;
}
this.classList.toggle("active");
var panel = this.nextElementSibling;
if (panel.style.maxHeight) {
panel.style.maxHeight = null;
} else {
panel.style.maxHeight = panel.scrollHeight + "px";
}
});
}
.accordion {
background-color: #1e1e1e;
color: #c0b9b4;
cursor: pointer;
padding: 18px;
width: 100%;
border: none;
text-align: left;
outline: none;
font-size: 1em;
transition: 0.4s;
margin: 0 0 2px 0;
}
ul.track-listing {
padding: 0;
margin: 0;
list-style-type: none;
}
.active,
.accordion:hover {
background-color: #c0b9b4;
color: #1e1e1e;
}
.accordion:after {
content: 'LYRICS \002B ';
color: #777;
float: right;
margin-left: 5px;
}
.active:after {
content: "\2212";
}
.panel {
padding: 0 18px;
background-color: #1e1e1e;
max-height: 0;
overflow: hidden;
transition: max-height 0.2s ease-out;
color: #c0b9b4;
}
<ul class="track-listing">
<li>
<button class="accordion">TITLE</button>
<div class="panel">
<p>Panel content</p>
</div>
</li>
<li>
<button class="accordion">TITLE</button>
<div class="panel">
<p>Panel content</p>
</div>
</li>
<li>
<button class="accordion">TITLE</button>
<div class="panel">
<p>Panel content</p>
</div>
</li>
</ul>
Upvotes: 4
Reputation: 33189
You can do it by having a toggle function that can be overridden with a specific close state. That way, you just close everything except for the clicked one before toggling. Here is the forked pen, with code below.
var acc = document.getElementsByClassName("accordion")
const toggleAccordian = (acc, open = !acc.classList.contains('active')) => {
acc.classList.toggle('active', open)
const panel = acc.nextElementSibling
panel.style.maxHeight = open ? panel.scrollHeight + "px" : null
}
const elems = Array.from(acc)
elems.forEach(a => {
a.addEventListener('click', () => {
elems
.filter(e => e !== a)
.forEach(e => toggleAccordian(e, false))
toggleAccordian(a)
})
})
Upvotes: 2
Reputation: 719
Yes, you can iterate through the acc
array again and close the accordions that don't have the same index as the closure.
var acc = document.getElementsByClassName("accordion");
var i;
for (i = 0; i < acc.length; i++) {
acc[i].addEventListener("click", function () {
toggleAccordion(this);
if (this.classList.contains("active")) {
for (var j = 0; j < acc.length; j++) {
if (i != j) {
acc[j].nextElementSibling.style.maxHeight = null;
}
}
}
});
}
function toggleAccordion(button) {
button.classList.toggle("active");
var panel = button.nextElementSibling;
if (panel.style.maxHeight) {
panel.style.maxHeight = null;
} else {
panel.style.maxHeight = panel.scrollHeight + "px";
}
}
Upvotes: 2