Home > OS >  dropdown menu not closing
dropdown menu not closing

Time:01-30

i have a dropdown menu that is not closing after opening,

when i click on it , it opens , but after the second click it doesn't close

 function menuFunction(){
    var menu = document.getElementById('ani-menu');

   if(menu.style.zIndex = "-1"){
     menu.style.visibility = "visible"
     menu.style.transform = "translateY(0)"
     menu.style.opacity = "1"
     menu.style.zIndex = "1"
     
   }
   else{
    menu.style.visibility = "hidden"
     menu.style.transform = "translateY(-3em)"
     menu.style.opacity = "0"
     menu.style.zIndex = "-1"
   }

  }  


 <li  onclick="menuFunction()"><a  href="#ICT">Services<i ></i></a>
<ul  id="ani-menu">
  <li><a href="#ICT">ICT Solutions</a></li>
  <li><a href="#One-On-One">Trainings</a></li>
  <li><a href="#materials">Materials</a></li>
  <li><a href="#packs">Exclusive Offers</a></li>
</ul>
</li>  

CodePudding user response:

The Problem is = in this line if(menu.style.zIndex = "-1"). Use instead ==. then will work.

  •  Tags:  
  • Related