MediaWiki:Gadget-Tabs.js: Difference between revisions

From Elwiki
(this doesn't even work anymore)
No edit summary
Line 1: Line 1:
$('div.tabdiv').each(function() {
$('div.tabdiv').each(function() {
     var tabs = $(this);
     var tabs = $(this);
    tabs.find('> ul a').removeAttr('href');
     tabs.find('> ul > li').click(function() {
     tabs.find('> ul > li').click(function() {
         var li = $(this);
         var li = $(this);

Revision as of 16:53, 18 March 2022

$('div.tabdiv').each(function() {
    var tabs = $(this);
    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();
});