MediaWiki:Common.js: Difference between revisions
Jump to navigation
Jump to search
Mg27713root (talk | contribs) 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";
});