Difference between revisions of "User:Lexar/sandbox/Page.js"
< User:Lexar | sandbox
m (changed th to $this) |
m (commenting out my external css to use local css and also removing second class) |
||
Line 1: | Line 1: | ||
//my js page for general screwin around | //my js page for general screwin around | ||
− | $('head').append('<link href="https://dl.dropboxusercontent.com/u/32668357/wiki_stuff/tempres/style.css" rel="stylesheet" type="text/css" />'); | + | //$('head').append('<link href="https://dl.dropboxusercontent.com/u/32668357/wiki_stuff/tempres/style.css" rel="stylesheet" type="text/css" />'); |
var WeaponWearTable = { | var WeaponWearTable = { | ||
tabSwitch: function($this,tab,weapons,weapon) { | tabSwitch: function($this,tab,weapons,weapon) { | ||
Line 12: | Line 12: | ||
}, | }, | ||
init: function() { | init: function() { | ||
− | var container = $('.weapon-wear-table | + | var container = $('.weapon-wear-table'); |
container.each(function(){ | container.each(function(){ | ||
var $this = $(this), tabs = $this.children('.tabs'), tab = tabs.children('li'), weapons = $this.children('.weapons'), weapon = weapons.children('li'); | var $this = $(this), tabs = $this.children('.tabs'), tab = tabs.children('li'), weapons = $this.children('.weapons'), weapon = weapons.children('li'); | ||
Line 19: | Line 19: | ||
tab.click(function(){WeaponWearTable.tabSwitch($(this),tab,weapons,weapon);}); | tab.click(function(){WeaponWearTable.tabSwitch($(this),tab,weapons,weapon);}); | ||
}); | }); | ||
− | |||
} | } | ||
}; | }; | ||
$(WeaponWearTable.init); | $(WeaponWearTable.init); |
Revision as of 05:19, 16 July 2015
//my js page for general screwin around //$('head').append('<link href="https://dl.dropboxusercontent.com/u/32668357/wiki_stuff/tempres/style.css" rel="stylesheet" type="text/css" />'); var WeaponWearTable = { tabSwitch: function($this,tab,weapons,weapon) { if (!$this.hasClass('current')) { var tabIndex = $this.index(); $this.parent().find('.current').removeClass('current'); $this.addClass('current'); weapons.find('.current').removeClass('current'); weapon.eq(tabIndex).addClass('current'); } }, init: function() { var container = $('.weapon-wear-table'); container.each(function(){ var $this = $(this), tabs = $this.children('.tabs'), tab = tabs.children('li'), weapons = $this.children('.weapons'), weapon = weapons.children('li'); tab.first().addClass('current'); weapon.first().addClass('current'); tab.click(function(){WeaponWearTable.tabSwitch($(this),tab,weapons,weapon);}); }); } }; $(WeaponWearTable.init);