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

From Fire Emblem Wiki, your source on Fire Emblem information. By fans, for fans.
Revision as of 15:41, 23 January 2019 by Moydow (talk | contribs) ("tab_tab" sounds dumb, but whatever)
(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.
/*
	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_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(".tab_content").css("display","none");
		
		// show content corresponding to the tab
		var index = $siblings.index(this);
		$content.children().eq(index).css("display","block");
	});
});