Skip to content

Instantly share code, notes, and snippets.

@louis-e
Last active August 14, 2020 23:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save louis-e/05b71795ebcc08a39df6e9d89d82c049 to your computer and use it in GitHub Desktop.
Save louis-e/05b71795ebcc08a39df6e9d89d82c049 to your computer and use it in GitHub Desktop.
HTML JavaScript | Easy Multi Language Support
<!DOCTYPE html>
<html>
<body>
<p id="text1">Test auf Deutsch!</p>
<script>
if (navigator.language != "de-DE" && navigator.language != "de" && window.location.hash != "#eng")
{
window.location.href = "#eng";
}
if (window.location.hash == "#eng")
{
document.getElementById("text1").innerText = "Test in English!";
}
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment