14 lines
426 B
JavaScript
14 lines
426 B
JavaScript
var dropdown = document.getElementsByClassName("dropdown-btn");
|
|
var i;
|
|
|
|
for (i = 0; i < dropdown.length; i++) {
|
|
dropdown[i].addEventListener("click", function() {
|
|
this.classList.toggle("active");
|
|
var dropdownContent = this.nextElementSibling;
|
|
if (dropdownContent.style.display === "block") {
|
|
dropdownContent.style.display = "none";
|
|
} else {
|
|
dropdownContent.style.display = "block";
|
|
}
|
|
});
|
|
}
|