I think I know why this is happening but I am not sure of the best way to tackle it. Here is a jsFiddle you can refer to.
If you attempt to open and close a sub-menu in the jsFiddle (Click the + icon next to any link) and then open it again before it has fully closed it will become stuck. Now open the menu and attempt to open one of it's child sub-menu's and you will see that it's parent doesn't expand to accommodate it.
I believe this problem is caused because during the hide procedure jQuery applies an inline height to the element and if you attempt to open it before it finishes animating it assumes that it is the final height of the element.
I considered storing the height of each element at the very start and using that to animate towards, however the problem with this approach is that menus with sub-menus height changes all the time depending on whether it's sub-menus are open and this value is never a constant.
Is there anyway to tell jQuery to ignore the element's inline height and calculate what it's true height should be?
Here is the jQuery used, for the HTML and CSS please see the jsFiddle as they are rather lengthy:
jQuery(document).ready(function($){
var legacyMode = $('html').hasClass('oldie');
var titles = {normal: "Show sub-topics", active: "Hide sub-topics"};
var sub_sections = $('ul#map li:has(ul.child)');
sub_sections.each(function() {
if (!$(this).find('li.active').length && !$(this).hasClass('active')) {
var toggle = $('<a class="toggle" href="#"></a>').attr('title', titles.normal).insertBefore($(this).children('ul.child'));
var child = $(this).children('ul.child').hide();
toggle.data('container', this);
}
});
$('a.toggle').click(function (event) {
event.preventDefault();
var target = $(this).siblings('ul.child');
if($(this).hasClass('active')) {
toggleDisplay(target, false);
$(this).removeClass('active').attr('title', titles.normal);
} else {
toggleDisplay(target, true);
$(this).addClass('active').attr('title', titles.active);
}
function toggleDisplay(target, on) {
var mode = (on) ? "show" : "hide";
if (!legacyMode) {
target.stop(true, false).animate({height: mode, opacity: mode}, 500);
} else {
// Omits opacity to avoid using proprietary filters in legacy browsers
target.stop(true, false).animate({height: mode}, 500);
}
}
});
});
