MediaWiki:Gadget-Tabs.js: Difference between revisions

From Elwiki
No edit summary
No edit summary
Line 3: Line 3:
     tabs.find('> ul a').removeAttr('href');
     tabs.find('> ul a').removeAttr('href');
     tabs.find('> ul > li.tabber-tab').click(function() {
     tabs.find('> ul > li.tabber-tab').click(function() {
        var exclude = $(this).parents('ul').find('.exclude').length;
         var li = $(this);
         var li = $(this);
         var index = li.index();
         var index = li.index() - exclude;
         li.addClass('active').siblings('li').removeClass('active');
         li.addClass('active').siblings('li').removeClass('active');
         tabs.children('div').eq(index).show().siblings('div').hide();
         tabs.children('div').eq(index).show().siblings('div').hide();

Revision as of 13:50, 12 May 2022

$('div.tabdiv').each(function() {
    var tabs = $(this);
    tabs.find('> ul a').removeAttr('href');
    tabs.find('> ul > li.tabber-tab').click(function() {
        var exclude = $(this).parents('ul').find('.exclude').length;
        var li = $(this);
        var index = li.index() - exclude;
        li.addClass('active').siblings('li').removeClass('active');
        tabs.children('div').eq(index).show().siblings('div').hide();
    });
    tabs.find('> ul > li').first().not('.boss-timer-section .tabber-tab').click();
   
   var tabber = window.location.hash.replace('#', '').replace(/_/g, ' ');
   if (tabber != '') $('.tabber-tab:contains("'+tabber+'")').click();
});