js
Anonymous
plain_text
08/07/2023 12:37 PM
528 B
19
Indexable
const dropdownButton = document.getElementById("dropdownButton");
const dropdownMenu = document.querySelector(".dropdown-menu");
dropdownButton.addEventListener("click", function() {
dropdownMenu.classList.toggle("show");
});
document.addEventListener("click", function(event) {
if (!dropdownButton.contains(event.target)) {
dropdownMenu.classList.remove("show");
}
});
Editor is loading...