Newer
Older
various / program / js / test.js
@c1231257 c1231257 on 19 Dec 2024 511 bytes add
document.addEventListener('DOMContentLoaded', function() {
    const btn = document.getElementById('dropdown__btn');
    const dropdownContent = document.querySelector('.dropdown-content');
  
    btn.addEventListener('click', function(event) {
      event.stopPropagation();
      dropdownContent.classList.toggle('show');
    });
  
    document.addEventListener('click', function(event) {
      if (!event.target.closest('.dropdown')) {
        dropdownContent.classList.remove('show');
      }
    });
  });