Last active
August 14, 2020 23:22
-
-
Save louis-e/05b71795ebcc08a39df6e9d89d82c049 to your computer and use it in GitHub Desktop.
HTML JavaScript | Easy Multi Language Support
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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