Skip to content

Instantly share code, notes, and snippets.

@tarikcayir
Last active August 29, 2015 14:15
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save tarikcayir/7032df550b364af9b7ff to your computer and use it in GitHub Desktop.
Save tarikcayir/7032df550b364af9b7ff to your computer and use it in GitHub Desktop.
JS detected user browser language
// Detected user browser langauge
var userLang = navigator.language || navigator.userLanguage;
userLang = userLang.substring(1,2);
if ( userLang == "tr" ) {
window.location.href = "http://www.sitename.com/tr";
} else {
window.location.href = "http://www.sitename.com/en";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment