Difference between revisions of "User:HallowizerTEST/common.js"
Jump to navigation
Jump to search
m (another typo) |
(Changed label text) |
||
Line 3: | Line 3: | ||
var li = document.createElement("li"); | var li = document.createElement("li"); | ||
var href = "https://" + location.href.substring("http://".length); | var href = "https://" + location.href.substring("http://".length); | ||
− | li.innerHTML = '<a href="' + href + '"> | + | li.innerHTML = '<a href="' + href + '">Switch to HTTPS</a>'; |
nav.insertBefore(li, nav.children[1]); | nav.insertBefore(li, nav.children[1]); | ||
} | } |
Latest revision as of 22:22, 24 April 2021
if (location.href.startsWith("http://")) {
var nav = document.querySelector("#p-navigation ul");
var li = document.createElement("li");
var href = "https://" + location.href.substring("http://".length);
li.innerHTML = '<a href="' + href + '">Switch to HTTPS</a>';
nav.insertBefore(li, nav.children[1]);
}