Mega Menu hides on MouseOut and not on all pages

Hello there,

I think I should start by saying that I had never coded in my entire life until a few weeks ago and … Oh my … This is a whole new world!

That being said please understand that I am a total newbie. I have been attempting a myriad of codes for a few weeks but I am totally stuck and I need your help. I have read most of the corvid reference function and tried a few without any success. I do not even know how what I did is miraculously working!

I have 2 issues:
1/ I wanted to create a Megamenu which is not possible on Wix. I am doing a travel website and I wanted my menu to be displayed for example like: DESTINATIONS=> ASIA=> TAIWAN,JAPAN etc.

So I decided to code. I created a test page. On that page I created a button called “Destinations” that I put on the Header. Then I created a box/Container right underneath the button that I called “megaMenu”. On that box I than added all my continents’ buttons ( Africa, Asia, Europe, America etc.).
I then created other boxes that I called “subMenu1”, “subMenu2” etc., that I populated with buttons. For example submenu1 box contains 3 buttons: Taiwan, Japan and South Korea and this submenu1 appears when I Mouseover Asia (Button5).

When I mouseover Asia, my submenu appears alright (victory for me) but when my mouse goes toward Japan for instance than the megamenu disappears. I am left with only the submenu showing. What I want is for the megaMenu box (the one with all the continents) to stay open while people mouseover the submenu. Than, and when they mouse out from it it can disappear. Please see the screenshot I took.
Here is the code I used (I am pretty sure some lines are useless and even might not be right… But it seems to work):

export function destinationsButton_mouseIn(event) { $w( " #megaMenu ").show(); } export function destinationButton_mouseOut(event) { $w( " #megaMenu ").hide(megaMenu_mouseOut); } export function subMenu1_mouseOut(event) { $w( " #subMenu1 ").hide(subMenu1_mouseOut); } export function megaMenu_mouseOut(event) { $w( " #megaMenu ").hide(); } export function subMenu1_mouseIn(event) { $w( " #subMenu1 ").show(subMenu1_mouseIn); } export function button5_mouseIn_1(event) { $w( " #subMenu1 ").show(subMenu1_mouseIn); } export function button5_mouseOut_1(event) { $w( " #subMenu1 ").hide(subMenu1_mouseOut); } export function megaMenu_mouseIn(event) { $w( " #megaMenu ").show();

}
I want the megaMenu to stay open while I am over my submenu… What should I add to my code ??? Please could you be very specific because I already tried, hide, delay, fade and none of it works …

2/ My second issue is that I want my megamenu to appear in my whole website but it only appears on the test page I did. I tried to code on the ‘site’ window and not the “page one” but everything goes red and it is not accepting the code.

The only thing that stick to all pages is the button “Destinations” that I put on the header. Than i thought, Laura, you just have to put all the containers and buttons in the header for it to work but it is not allowing me to do so.

What should I code and Where or what should I do for the menu I created to appear in all pages ?

That is very long but I hope I was as clear as you need me to be in order to help me!!!

I would really appreciate any help!! I tried to contact a Wix partner and they told me I needed to pay a 4 digit number… I definetly want to do that myself.

Thanks a lot,

Laura

Currently you are only doing the onMouse events for subMenu1 which looks to be the Destinations menu.

When you move your mouse towards the second sub menu and come off of subMenu1, then as your code is currently set up to hide this subMenu1 as soon as the user moves off of it, it will close and not stay open

So you will need to rework your code and change it so that the subMenu1 does not close whilst the second submenu is open.

With regards to the errors in the site tab, test the code in preview and on the live site as I think that what you are seeing is just an issue and that it will actually work.

Thank you for your answer GOS.

Just to be specific :
Destinations is a button.
megaMenu box: is the box/container that is independant from the button Destinations. In this box I have all the continents.
subMenu1 box: is the box with the countries of a specific continent (i.e.Japan, Taiwan and Korea for Asia).

I understand what I have to do that and I tried to change the code so that my megaMenu box does not close while my submenu1 is open but what happens is that it stays open and never closes…

Do I have to use if or else code ? Could you be a little more specific on the type of code. Please bear with me I am trying very hard here.

Thank you for answering me!
As regard to your second answer it does not work I copied paste the code from the page tab to the site tab and it does not work and shall a bunch of red dots errors as in the screenshots.

When I go to preview and navigate on my site I can only see the destinations button I created on the header but not the megamenu and submenu.