MediaWiki
Common.js: Difference between revisions
From Grouse House Wiki
No edit summary |
No edit summary |
||
| Line 27: | Line 27: | ||
$( document ).ready( function() { | $( document ).ready( function() { | ||
$( '#p1' ).html( 'New text by jQuery!' ); | |||
}); | }); | ||
<p id="p1">Hello World!</p> | |||
Revision as of 00:06, 3 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";
}
});
}
function moveTOC() {
var tocDestination = getElementById("s-toc-content");
var tocContents = getElementById("toc-content");
tocDestination.innerHTML = tocContents;
}
/* Links */
$( document ).ready( function() {
$( '#p1' ).html( 'New text by jQuery!' );
});
<p id="p1">Hello World!</p>
