Hello.
In our application we're using jdMenu plugin to create a hierarchical menu from nested unordered lists.

This works well until there are so many items in a menu that it is forced off the screen.

In an attempt to fix this I've updated the plugin (actually the positionBy plugin that is a requirement of jdMenu) so that when a long menu is discovered the plugin reduces the height of the menu (ul), applies overflow:hidden and attempts to place it again. It then attaches a mousemove event to the menu so that when the users moves their mouse up and down the menu scrolls allowing them to see the hidden items. Like so:

(print screen doesn't capture pointer but on the left screen it's at the top of the menu, on the right it's at the bottom)
This works when it is the last menu in the hierarchy that is too long as above, however if a menu further up the hierarchy is too long then it's sub-menus are not displayed because of the overflow:hidden which has been applied.
So, my question is... is there another way to achieve this effect without using overflow:hidden (or can I use it in a better way)?
Alternatively, is there a more suitable jQuery plugin which will allow me to do something similar?
Let me know if you need any further clarification. Thanks loads.


