So, I have two webpages, html and html_en.
Is it possible to detect with JS system or browser language, and, if it's not italian, switch it automatically to english version?
I know there is a navigator.language(s) to help me with, but I dunno how to realise it together, in order to switch htmls if language is not it.
Thanks
Ok, I found an answer.
Simple JS to it.
let language = window.navigator.language;
let languageFistTwo = language.substr(0, 2); // To only keep the first 2 characters.
let currentLocation = document
.getElementsByTagName("html")[0]
.getAttribute("lang-js");
switch (languageFistTwo) {
case "it":
if (currentLocation == "it") window.location.href = "../../index-test.html";
break;
default:
if (currentLocation != "en") {
window.location.href = "../../index.html";
}
}