MediaWiki:Gadget-Tabs.js

From Elwiki
Revision as of 15:54, 4 June 2016 by Boxsnake (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();
        tabs.children('div').eq(index).show().siblings('div').hide();
    });
});