MediaWiki:Gadget-Tabs.js

MediaWiki interface page
Revision as of 19:01, 26 October 2019 by Chao (talk | contribs) (Created page with "$('div.tabdiv').each(function() { var tabs = $(this); tabs.find('> ul a').removeAttr('href'); tabs.find('> ul > li').click(function() { var li = $(this);...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
$('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();
});

(function(window, $) {
    var tabbers = window.location.hash;
    tabbers = tabbers.replace(/^#!tabbers:/, '');
    tabbers = tabbers.split('/') || [];

    while(tabbers.length) {
        var route = tabbers.shift() || '';
        route = route.split('@');
        var child = route[0] || '';
        var parent = route[1] || '';
        $('#' + parent + 'tabtag' + child).click();
    }
})(window, $);