Here is my source code ,
when i tired to translate using CAPITAL letters it's not working. For Initcaps words not working properly
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<script type="text/javascript" src="
https://www.google.com/jsapi">
</script>
<script type="text/javascript">
// Load the Google Transliterate API
google.load("elements", "1", {
packages: "transliteration"
});
function onLoad() {
var options = {
sourceLanguage:
google.elements.transliteration.LanguageCode.ENGLISH,destinationLanguage:[google.elements.transliteration.LanguageCode.MALAYALAM],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(['transliterateTextarea']);
}
google.setOnLoadCallback(onLoad);
</script>
</head>
<body>
Type MALAYALAM (Press Ctrl+g to toggle between English and MALAYALAM)<br>
<textarea id="transliterateTextarea" style="width:600px;height:200px" ></textarea>
</body>
</html>
Regards Shamseer PC