Created
October 8, 2018 16:50
-
-
Save antonioiksi/945dc8ac731b87b4e9089facc5b5b2ca to your computer and use it in GitHub Desktop.
get browser locale or lang
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 lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Title</title> | |
</head> | |
<body> | |
Hello | |
<script> | |
function getLang() | |
{ | |
if (navigator.languages != undefined) | |
return navigator.languages[0]; | |
else | |
return navigator.language; | |
} | |
alert(getLang()); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment