MediaWiki:Gadget-Tabs.js
From Elwiki
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();
var tabber = window.location.hash.replace('#', '').replace(/_/g, ' ');
if (tabber != '') $('.tabber-tab:contains("'+tabber+'")').click();
});