MediaWiki:Gadget-Tabs.js: Difference between revisions

From Elwiki
(Undo revision 740705 by Ritsu (talk))
Tag: Undo
No edit summary
Line 9: Line 9:
     });
     });
     tabs.find('> ul > li').first().click();
     tabs.find('> ul > li').first().click();
 
  var tabber = window.location.hash.replace('#', '').replace(/_/g, ' ');
  if (tabber != '') $('.tabber-tab:contains("'+tabber+'")').click();
});
});

Revision as of 00:23, 19 March 2022

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