I am trying to display a web page according to the language that I will specified. For example:
<body>
<div id="monlabel"> Bonjour </div>
</body>
when I choose frensh, the text in the div text will be 'bonjour', and when I choose english, the div text will be 'good morning'. I thought about a properties file, but I didn't figure out how to read it using the javascript and apply it to my web page.
Thanks in advance.