MediaWiki:Tabs.js: Difference between revisions

Jump to navigation Jump to search
Want an adless experience? Log in or Create an account.
m
no edit summary
(I think that getElementsByClassName function is what's been messing up the js all over the wiki)
mNo edit summary
Line 11: Line 11:
var destinations = document.getElementsByClassName("tab");
var destinations = document.getElementsByClassName("tab");
var tabcontents = document.getElementsByClassName("tabcontent");
var tabcontents = document.getElementsByClassName("tabcontent");
Console.log(destinations.length
for( var i = 0; i < tabcontents.length; ++i ) {
for( var i = 0; i < tabcontents.length; ++i ) {
var tabs = getChildrenByTagName(tabcontents[i], "UL");
var tabs = getChildrenByTagName(tabcontents[i], "UL");
console.log(tabs);
for( var j = 0; j < tabs.length; ++j ) {
for( var j = 0; j < tabs.length; ++j ) {
/* Move from tabcontents ul to tab ul */
/* Move from tabcontents ul to tab ul */

Navigation menu