Please sign in to edit, using the button at the upper right corner of the page.
If you would like your name changed, contact Mg27713.


Difference between revisions of "MediaWiki:Common.js"

From Gunn Wiki
Jump to navigation Jump to search
m (var?)
m (No need for load listener?)
Line 1: Line 1:
 
/* Any JavaScript here will be loaded for all users on every page load. */
 
/* Any JavaScript here will be loaded for all users on every page load. */
  
addEventListener("load", function() {
+
//addEventListener("load", function() {
    var title = document.getElementById("firstHeading");
+
var title = document.getElementById("firstHeading");
    if (title.innerText === "Main Page")
+
if (title.innerText === "Main Page")
        title.style.display = "none";
+
    title.style.display = "none";
});
+
//});

Revision as of 03:47, 26 March 2021

/* Any JavaScript here will be loaded for all users on every page load. */

//addEventListener("load", function() {
var title = document.getElementById("firstHeading");
if (title.innerText === "Main Page")
    title.style.display = "none";
//});