Skip to content

Commit

Permalink
Create script.js
Browse files Browse the repository at this point in the history
  • Loading branch information
sophie-bui authored Jan 16, 2024
1 parent 9d54b3d commit 239fa9f
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions js/script.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
/* ACCORDION – News Page*/
var acc = document.getElementsByClassName("accordion");
var i;

for (i = 0; i < acc.length; i++) {
acc[i].addEventListener("click", function() {
/* Toggle between adding and removing the "active" class,
to highlight the button that controls the panel */
this.classList.toggle("active");

/* Toggle between hiding and showing the active panel */
var panel = this.nextElementSibling;
if (panel.style.display === "block") {
panel.style.display = "none";
} else {
panel.style.display = "block";
}
});
}

0 comments on commit 239fa9f

Please sign in to comment.