Jquery hasClass then hide
HejJeg skal lave en menu i drupal ved hjælp af jquery
den skal kunne folde sig ud og ind, men når der er et aktivt link med class('active') skal den forblive udviddet
(function ($) {
$(document).ready(function() {
$('.region-sidebar-first .block-menu ul.menu').children().children().hasClass('active').hide();
$('.region-sidebar-first .block-menu h2').click(function() {
$(this).parent().siblings().children().next().children().slideUp(400);
$(this).next('.content').children('.menu').slideDown(400);
});
});
}(jQuery));