I’m trying to change the main menu into a pop-up menu. I added the following to the page:
function toggledisplay(){
// show the popup at left:100px;top:100px;
$('#main-menu').smartmenus('popupShow', '100px', '100px');
}
I set “isPopup” to true.
When I click my button, the ‘popupShow’ function is called and the menu displays, HOWEVER the menu immediately disappears. I’ve tracked it down to the “menuHideAll: function() “. Is there a way to keep the menu visible until one of the other actions that would normally hide the menus is triggered?