Please sign in to edit, using the button at the upper right corner of the page.


MediaWiki:Common.js: Difference between revisions

From Gunn Wiki
Jump to navigation Jump to search
JS hide title
(No difference)

Revision as of 03:41, 26 March 2021

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

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