MediaWiki
Common.js: Difference between revisions
From Grouse House Wiki
No edit summary |
No edit summary |
||
| Line 21: | Line 21: | ||
function selectVariant() { | function selectVariant() { | ||
var dropdown = document. | var dropdown = document.getElementById("pearyCaribouVariants"); | ||
document.getElementById("variant").value = dropdown.options[dropdown.selectedIndex].text; | document.getElementById("variant").value = dropdown.options[dropdown.selectedIndex].text; | ||
} | } | ||
Revision as of 04:05, 16 February 2024
/* Any JavaScript here will be loaded for all users on every page load. */
/* Collapsible headers */
var spoilersc = document.getElementsByClassName('spoilerButton');
var j;
for (j = 0; j < spoilersc.length; j++) {
spoilersc[j].addEventListener("click", function() {
this.classList.toggle("active");
var spoilercontent = this.nextElementSibling;
if (spoilercontent.style.display === "block") {
spoilercontent.style.display = "none";
} else {
spoilercontent.style.display = "block";
}
});
}
/* Dropdown menus */
function selectVariant() {
var dropdown = document.getElementById("pearyCaribouVariants");
document.getElementById("variant").value = dropdown.options[dropdown.selectedIndex].text;
}
