Created
July 18, 2019 02:24
-
-
Save ricardoalcocer/0b2968f815badd45fa70b68ff7546a40 to your computer and use it in GitHub Desktop.
JavaScript - get browser preferred language
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
var language = window.navigator.userLanguage || window.navigator.language; | |
alert(language); //works IE/SAFARI/CHROME/FF |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment