Skip to content

Instantly share code, notes, and snippets.

@miguel-perez
Last active December 27, 2015 19:59
Show Gist options
  • Save miguel-perez/7380875 to your computer and use it in GitHub Desktop.
Save miguel-perez/7380875 to your computer and use it in GitHub Desktop.
Detect your user's language

Detect your user's language

Questions? Hit me up: @Tayokoart

var lang = window.navigator.userLanguage || window.navigator.language; // Uses OS language setting
$lang = $_SERVER['HTTP_ACCEPT_LANGUAGE']; // Uses the browser's language setting
<html lang="en"></html>
<html lang="es"></html>
<html lang="ja"></html>
<html lang="ar" dir="rtl"></html> <!-- Set document direction as needed -->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment