I'm developing a webite and I'm trying to guess how to get the clients current locale.... This web does use JQuery and Javascript a lot, so is there any way using it?
Thanks!
I'm developing a webite and I'm trying to guess how to get the clients current locale.... This web does use JQuery and Javascript a lot, so is there any way using it?
Thanks!
Try this jQuery
plugin for obtain the browser language setting.
Example usage:
$.browserLanguage(function( language , acceptHeader ){
alert("You have your browser language set to " + language);
})