sidebar

This is an old revision of the document!


Blogs

test

Option 1 Option 2 Option 3

document.addEventListener(“DOMContentLoaded”, function () {

  const dropdownTrigger = document.getElementById("dropdown-trigger");
  const dropdownContent = document.getElementById("dropdown-content");
  dropdownTrigger.addEventListener("click", function () {
 if (dropdownContent.style.display === "block") {
      dropdownContent.style.display = "none";
    } else {
      dropdownContent.style.display = "block";
    }
  });
});