The base idea is, I have shop menu as list
<li class="shop-menu"><a href="{{url('shop')}}">shop</a></li>
when the shop-menu hovered (mouseover jquery function), I want to fadeIn a div I name it
shop-menu-div
I have successfully pop-up this menu without fade-in animation by having css display:none and then display:contents when hovered by addClass('active)
the thing is, I want this shop-menu-div to fadeIn when hovered and fadeout when mouseleave
have tried several things even with css keyframes but it's not working, how to achieve this?