You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/===== MENU SHOW =====/
/* Validate if constant exists */
if (navToggle){
navToggle.addEventListener('click', () =>{
navMenu.classList.add('show-menu')
})
}
The text was updated successfully, but these errors were encountered:
/==================== MENU SHOW Y HIDDEN ====================/
const navMenu = document.getElementById('nav-menu'),
navToggle =document.getElementById('nav-toggle'),
navClose = document.getElementById('nav-close')
/===== MENU SHOW =====/
/* Validate if constant exists */
if(navToggle){
navToggle.addEventListener('click', () =>{
navMenu.classList.add('show-menu')
})
}
if(navClose){
navClose.addEventListener('click', ()=>{
navMenu.classList.remove('show-menu')
})
}
const navMenu = document.getElementById('nav-menu'),
navToggle = document.getElementById('nav-toggle'),
navClose = document.getElementById('nav-close'),
/===== MENU SHOW =====/
/* Validate if constant exists */
if (navToggle){
navToggle.addEventListener('click', () =>{
navMenu.classList.add('show-menu')
})
}
The text was updated successfully, but these errors were encountered: