I'm trying to make the n2menu hide all expanded submenus when you mouse out of the menu. Does anyone have any experience with this menu?
This is a really cheesy way to accomplish it... var onMouseOver = function(){ // ... all existing code snipped setTimeout ( function() { removePreviouslyExpanded(q) }, 15000 ) } ... and it's not really what I'm after ... Is there some way to say when you mouse into another element that all sub menus which do not reside in my current parent child chain get closed? I'm stacking three Top Level menus on the screen and I need the submenus for those other two menus to close... setting up the three menus looks like this: <script type="text/javascript"> $(document).ready(function(){ $("#ctl00_MenuControljQuery").n2menu(); $("#ctl00_project_menu").n2menu(); $("#ctl00_entity_menu").n2menu(); }); </script> I've tried (for example in the onMouseOver fn ) $('.expanded').each ( ... ) but that will close the second level sub menu and not allow me to access the other menu items in it when it shows the third level submenu. any help is greatly appreciated. D.