8 lines
199 B
JavaScript
8 lines
199 B
JavaScript
function toggleDropdown(headerClicked) {
|
|
let body = headerClicked.nextElementSibling;
|
|
let arrow = headerClicked.children[1];
|
|
|
|
body.classList.toggle("open");
|
|
arrow.classList.toggle("open");
|
|
}
|