Difference between revisions of "User:HallowizerTEST/common.js"
Jump to navigation
Jump to search
m (syntax fix) |
m (another typo) |
||
Line 4: | Line 4: | ||
var href = "https://" + location.href.substring("http://".length); | var href = "https://" + location.href.substring("http://".length); | ||
li.innerHTML = '<a href="' + href + '">Upgrade to HTTPS</a>'; | li.innerHTML = '<a href="' + href + '">Upgrade to HTTPS</a>'; | ||
− | nav.insertBefore( | + | nav.insertBefore(li, nav.children[1]); |
} | } |
Revision as of 23: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 + '">Upgrade to HTTPS</a>';
nav.insertBefore(li, nav.children[1]);
}