Skip to content

Instantly share code, notes, and snippets.

@nicolabavaro
Created July 2, 2015 13:33
Show Gist options
  • Save nicolabavaro/b5adc5378bc671d171b7 to your computer and use it in GitHub Desktop.
Save nicolabavaro/b5adc5378bc671d171b7 to your computer and use it in GitHub Desktop.
Redirect by Language
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script type="text/javascript">
$( document ).ready(function(){
var userLang = navigator.language || navigator.userLanguage;
if (userLang == "it") {
window.location.href = "http://www.neber.it/area-riservata/area-riservata.html"
}
else {
window.location.href = "http://www.neber.it/area-riservata/area-riservata-en.html"
}
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment