Categories
Uncategorized

How To Show Drop Down on Hover in Dawn Theme

Paste code below Line number 24 (global.js )

let items = document.querySelector(".header__inline-menu").querySelectorAll("details");

  console.log(items)

  items.forEach(item => {

    item.addEventListener("mouseover", () => {

      item.setAttribute("open", true);

      item.querySelector("ul").addEventListener("mouseleave", () => {

        item.removeAttribute("open");

      });

    item.addEventListener("mouseleave", () => {

      item.removeAttribute("open");

    });

  });

  });

Leave a Reply

Your email address will not be published. Required fields are marked *