开发者

tab menu + accordion menu assign classes

I have asked question about these t开发者_Python百科wo menus before, but the subject was a bit different, for now, all i want is to upgrade the previous code written here: accordion, tab menus, assign select class for both so that the class open_menu doesnt disappear after i click the link in it's sub menu, u can easily understand it from this script: http://jsfiddle.net/bq6tA/11/ in comments i tried to reply the man who wrote this script, but he didn't reply, but i really need to modify this script, right now, and thx for help everyone! btw, if i refresh the page, the classes are assigned ok, once i click the sub menu link, the class open_menu for top menu link disappear.


Line 86 of tabcontent.js is looping through every item in your list structure and removing all styling classes if they're not the currently selected item:

this.getselectedClassTarget(this.tabs[i]).className=(this.tabs[i].getAttribute("rel")==subcontentid)? "selected" : ""

Add an additional click binder to reapply it for each lowest level item:

$("ul.reset a").click(function() {
    $(this).closest("ul").siblings("a").addClass("open_menu");
});

See a working demo here.


Can you simply remove the .removeClass('open_menu') from the code?

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜