jQuery mega menu add/remove class on parent menu item – Shopify
I'm trying to build a mega menu in Shopify, this is what I have in my HTML: $('.has-child').on('click', function(event) { event.preventDefault(); $(this).find('.child').toggleClass('menu-visible'); $('.child').click(function(e) { e.stopPropagation(); }); }); .menu-visible{ color:red} <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <ul class="parent"> <li class="parent-main has-child"><a href="/collections">Shop</a> <ul class="child"> <li…