MediaWiki

Common.js: Difference between revisions

From Grouse House Wiki

No edit summary
No edit summary
Line 26: Line 26:
/* Links */
/* Links */


$( document ).ready( function() {
$j( document ).ready( function() {
     $( '#p1' ).html( 'New text by jQuery!' );
     $j( '#p1' ).html( 'New text by jQuery!' );
});
});


<p id="p1">Hello World!</p>
<p id="p1">Hello World!</p>

Revision as of 00:07, 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 */

$j( document ).ready( function() {
    $j( '#p1' ).html( 'New text by jQuery!' );
});

<p id="p1">Hello World!</p>