Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

178
Views
Switch language depends on user's browser or OS system language

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

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

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";
    }
}

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!