You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
256 B

2 years ago
const mobile_nav = document.querySelector(".mobile-navbar-btn");
const nav_header = document.querySelector(".header");
const toggleNavbar = () => {
nav_header.classList.toggle("active");
};
mobile_nav.addEventListener("click", () => toggleNavbar());