MediaWiki
Vector.js: Difference between revisions
From Grouse House Wiki
No edit summary |
No edit summary |
||
| Line 16: | Line 16: | ||
} | } | ||
function displayText( | function displayText(x) { | ||
var text = document.getElementById( | var text = document.getElementById('x'); | ||
text.style.display = "block"; | text.style.display = "block"; | ||
} | } | ||
Revision as of 03:29, 24 January 2024
/* All JavaScript here will be loaded for users of the Vector skin */
var coll = document.getElementsByTagName('h2');
var i;
for (i = 0; i < coll.length; i++) {
coll[i].addEventListener("click", function() {
this.classList.toggle("active");
var content = this.nextElementSibling;
if (content.style.display === "block") {
content.style.display = "none";
} else {
content.style.display = "block";
}
});
}
function displayText(x) {
var text = document.getElementById('x');
text.style.display = "block";
}
