<!DOCTYPE html>
<html>
<body>

<p>This example demonstrates the browserLanguage property, for IE10 and earlier versions.</p>

<p>Click the button to display the language of your browser.</p>

<button onclick="myFunction()">Try it</button>

<p id="demo"></p>

<script>
function myFunction() {
    var x = "Language of the browser: " + navigator.browserLanguage;
    document.getElementById("demo").innerHTML = x;
}
</script>

</body>
</html>