I'm using the IceMegaMenu extension on a Joomla 2.5 project. IceMegaMenu is based on Menumatic and uses Mootools.
Mostly this is working fine. But I'd like to make the drop-down menus close if the user clicks anywhere outside of the drop-down. Without this, users on tablets/mobiles can only close the drop-down by clicking on a link or opening another drop-down. They can't close the drop-down and stay on the same page.
By the way, I've got the drop-downs working for tablets/mobiles by using text separators in the Joomla menu for the top-level parent items. This way, they are <a> tag elements without hrefs and users on tablets/mobiles can click the parent item to open the drop-down. If tablet/mobile users have Javascript disabled, I'll hide this menu and rely on a fallback footer menu.
I found this suggestion for hiding MenuMatic sub-menus on click:
document.addEvent('click',function(e){
myMenu.hideAllSubMenusNow()
});
See: code.google.com/p/menumatc/issues/detail?id=5
hideAllSubMenusNow is defined in icemegamenu.js.
But I'm not clear how to add this. Does it need to be inside icemegamenu.js? And if so, where in that file?
Here's a link to a test site:
http://www.interactpartners.com/client/test/
Update: I still haven't resolved this. I did have another idea - add a "Close" or "X" button in every drop-down, just so users on tablets and mobiles could hide an open drop-down if they want to stay on the same page. Though this probably requires more work than just closing the drop-down on a click/touch outside or a toggle on the parent.
But I'm still hoping for some help on how to get hideAllSubMenusNow working.
Thanks.