'How can we fix this mobile menu?

We have taken over a project from previous developers and have some bug on the mobile menu we can't seem to figure out.

Mobile menu always has sub-menus opened and you cant close them at all.

Code handle we could trace:

jQuery('.menu-icon').on('click', function(e){
    jQuery('.main-navigation').toggleClass('menu-active');
    jQuery('body').toggleClass('menu-open');
    e.preventDefault();
  });

Any recommendations for us to just get the mobile menu working again? If we simply remove this the menu burger icon stops working completely to open the mobile menu.



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source