Site News
Warning: This wiki contains spoilers. Read at your own risk!

Social media: If you would like, please join our Discord server, and/or follow us on Twitter (X) or Tumblr!

MediaWiki:Tabs.js: Difference between revisions

From Fire Emblem Wiki, your source on Fire Emblem information. By fans, for fans.
No edit summary
mNo edit summary
Line 10: Line 10:
   // When a tab is clicked
   // When a tab is clicked
   $(".tab").click(function () {
   $(".tab").click(function () {
     var $siblings = $(this).parent()children();
     var $siblings= $(this).parent()children();
     var $alltabs = $(this).closest(".tabcontainer");
     var $alltabs = $(this).closest(".tabcontainer");
     var $content = $alltabs.parent().children(".tabcontents");
     var $content = $alltabs.parent().children(".tabcontents");

Revision as of 22:35, 3 May 2014

/*
	Simple but flexible javascript tabs
	v0.3
	Author: Abdullah A. Abduldayem
	Contact: http://www.zeldawiki.org/User:Abdullah
	See http://www.zeldawiki.org/MediaWiki_talk:Tabs.js for examples and documentation
*/

$(document).ready(function(){
  // When a tab is clicked
  $(".tab").click(function () {
    var $siblings= $(this).parent()children();
    var $alltabs = $(this).closest(".tabcontainer");
    var $content = $alltabs.parent().children(".tabcontents");

    // switch all tabs off
    $siblings.removeClass("tabselected");

    // switch this tab on
    $(this).addClass("tabselected");

    // hide all content
    $content.children(".content").css("display","none");

    // show content corresponding to the tab
    var index = $siblings.index(this);
    $content.children().eq(index).css("display","block");
  });	
});