Javascript examples for Browser Object Model:Navigator
The language property returns the language version of the browser.
This property is read-only.
A String, representing the language version of the browser.
Examples of valid language codes are:
The following code shows how to get the language of your browser:
<!DOCTYPE html> <html> <body> <button onclick="myFunction()">Test</button> <p id="demo"></p> <script> function myFunction() {/*from w w w . ja v a 2 s. c o m*/ var x = "Language of the browser: " + navigator.language; document.getElementById("demo").innerHTML = x; } </script> </body> </html>