I have a menu with different submenus for each list item, all utilizing the same background tag. Currently, when one submenu is open and I hover over another list item, the previous submenus hide and the new one opens. What I want is for the content to change without hiding everything when hovering over a different list item.
Visit my website
I am looking for help to achieve something like:
if $('.active').mouseleave() && $('active').next().mouseenter() {
// do something cool here
}
And so on, adding more effects as needed.