Importing elements from other pages.

Hi, i am trying to make my website menu open, when i hover on one of the menu buttons. I have written the following code on home page and it works perfectly,

export function shopbutton_mouseIn(event) {
$w(‘#shopddmenu’).show();
}
export function shopddmenu_mouseOut(event) {
$w(‘#shopddmenu’).hide();
}
export function buttoncollections_mouseIn(event) {
$w(‘#shopddmenu’).hide();
}

But, when i go to the other pages, shopddmenu( the menu i created) does not open because its not present in other pages. How can import it from other pages ? Is there a some sort of master page that i can use?

Hi,
You can use “Show on all pages” feature.

Roi.