Bill
Bill

Reputation: 5668

get phone locale settings with javascript

Does anyone know of a way to get the phones locale settings for android and ios using javascript?

I found this: http://docs.phonegap.com/en/2.2.0/cordova_globalization_globalization.md.html#Globalization Which looks like will do it, but I'm looking for a why without using any libraries.

Thanks!

Upvotes: 0

Views: 869

Answers (1)

Misha
Misha

Reputation: 5380

Try this:

 var language = window.navigator.userLanguage || window.navigator.language;
 alert(language);

Upvotes: 1

Related Questions