Collapse all Category at Menu by Default for Corporati Theme

Confluence User - 27 Sep, 2016

Dear Expert,

How can I customize the Corporati Theme to collapse all Category at Menu by default with javascript?

Best Regards

Tony Chu

userviews;themes;corporati

3


28 Sep, 2016
confluenceUser
confluenceUser

Hi Tony Chu

Do try the Joget V5 Janux Theme (Enterprise Edition) in Userview Setting.

The V5 Janux Theme has collapsible menus.

28 Sep, 2016
confluenceUser
confluenceUser
31 Oct, 2016
confluenceUser
confluenceUser

I got a better script for it

$(document).ready(function(){
   $(".menu-container").each(function(){
        var current = $(this).find("div.current").length;
        if (current > 0){
            $(this).show();
        } else {
            $(this).hide();
        }
   });
});
RELATED QUESTIONS

Your answer


To answer a question you'll need an account.

Print