Open In App
Related Articles

How to switch the language of the page using JavaScript ?

Improve Article
Improve
Save Article
Save
Like Article
Like

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: The following steps have to be followed for this 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 could 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
    var 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


Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 16 Jan, 2023
Like Article
Save Article
Similar Reads
Related Tutorials