google.load("elements", "1", {packages: "transliteration"});
     
    function OnLoad() {
      var content = document.getElementById('content');
      // Create the HTML for our text area
      
    
      var options = {
          sourceLanguage:
              google.elements.transliteration.LanguageCode.ENGLISH,
          destinationLanguage:
              [google.elements.transliteration.LanguageCode.HINDI],
          shortcutKey: 'ctrl+g',
          transliterationEnabled: true
      };
    
      // Create an instance on TransliterationControl with the required
      // options.
      var control =
          new google.elements.transliteration.TransliterationControl(options);
    
      // Enable transliteration in the textbox with id
      // 'transliterateTextarea'.
      control.makeTransliteratable(['q']);
    }
    google.setOnLoadCallback(OnLoad);
    
