Open In App

How to switch the language of the page using JavaScript ?

Last Updated : 20 Dec, 2023
Improve
Improve
Like Article
Like
Save
Share
Report

In this article, we will describe the method to switch between languages of a page depending upon the choice of the user.

The method works by using the hash fragment of the URL as an identifier that can be used later detected by the script to change the language. The hash is accessed using window.location.hash property in JavaScript and can be later checked for the needed language identifier.

Approach

  • We define a function that accepts the language identifier as a string and sets it as the hash fragment of the URL. We will then reload the page using the location.reload() method.
  • We store all the contents of the page in an object so that it can be easily retrieved by the script depending on the language.
  • We will next check if the current hash value is equal to the language tag we want and therefore set the relevant content of the language from the object we have defined above.

Example: This example demonstrates the above approach by displaying three buttons for the user to choose any language, and changing the language upon clicking the button.

HTML




<!DOCTYPE html>
<html>
 
<body>
    <h1 style="color: green">
        GeeksforGeeks
    </h1>
 
    <p>
        Click on the buttons below to change
        the language of the webpage.
    </p>
 
    <!-- Define the buttons that will
            change the language of the page
  and reload it -->
    <button onclick="changeLanguage('eng')">
        Change to English</button>
    <button onclick="changeLanguage('es')">
        Change to Spanish
    </button>
    <button onclick="changeLanguage('hin')">
        Change to Hindi
    </button>
 
    <!-- Define the content of the page
                       that would be changed -->
    <p id="siteContent">
        Welcome to the GeeksforGeeks Portal!
        You can choose any language using the
        buttons above!
    </p>
 
 
    <script>
        // Create a function to change
        // the hash value of the page
        function changeLanguage(lang) {
            location.hash = lang;
            location.reload();
        }
 
        // Define the language reload anchors
        let language = {
            eng: {
                welcome: "Welcome to the GeeksforGeeks " +
                    "Portal! You can choose any language " +
                    "using the buttons above!"
            },
            es: {
                welcome: "¡Bienvenido al portal GeeksforGeeks! " +
                    "¡Puedes elegir cualquier idioma usando " +
                    "los botones de arriba!"
            },
            hin: {
                welcome: "GeeksforGeeks पोर्टल पर आपका स्वागत है! " +
                    "आप ऊपर दिए गए बटन का उपयोग करके किसी भी " +
                    "भाषा को चुन सकते हैं!"
            }
        };
 
        // Check if a hash value exists in the URL
        if (window.location.hash) {
 
            // Set the content of the webpage
            // depending on the hash value
            if (window.location.hash == "#es") {
                siteContent.textContent =
                    language.es.welcome;
            }
            else if (window.location.hash == "#hin") {
                siteContent.textContent =
                    language.hin.welcome;
            }
        }
    </script>
</body>
 
</html>


Output:

Switch the language of the page



Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads