I’m creating a simple Mega Menu. Here is the test site : https://www.webworkcreative.website.com/mega-menu
And here is the code I’ve used thus far :
export function button1_mouseIn ( event ) {
$w ( “#megaMenu1” ). show ();
}
export function megaMenu1_mouseOut ( event ) {
$w ( ‘#megaMenu1’ ). hide ();
}
export function button2_mouseIn ( event ) {
$w ( “#megaMenu2” ). show ();
}
export function megaMenu2_mouseOut_1 ( event ) {
$w ( ‘#megaMenu2’ ). hide ();
}
If I am on Mega Menu 2 and I cursor over the blue Mega Menu button, the orange menu doesn’t disappear and the blue menu doesn’t appear. I’m basic in my coding experience and there could even be a better way to do this. Thank you.