Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
So, the issue is how to close the drop-down for touch devices (tablets, mobiles). PCs are OK - the drop-down closes when the cursor leaves the drop-down. The solution for tablets/mobiles could be either a click (touch) outside the drop-down or a toggle on the parent button - click to open, click again to close. – user1668414 Sep 14 '12 at 8:12

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.