MediaWiki:Gadget-Tabs.js: Difference between revisions
From Elwiki
mNo edit summary |
mNo 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 a').removeAttr('href'); | ||
tabs.find('> ul > li').click(function(){ | tabs.find('> ul > li').click(function() { | ||
var li = $(this); | var li = $(this); | ||
var index = li.index(); | var index = li.index(); | ||
Line 10: | Line 10: | ||
tabs.find('> ul > li').first().click(); | 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(); | |||
$('#tabtag-' + route).click(); | |||
} | |||
})(window, $); |
Revision as of 07:38, 26 July 2017
$('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();
$('#tabtag-' + route).click();
}
})(window, $);