Where is the Google Translate button?

How To Add Google Translate Button On Your Webpage?

Google Translate is a free multilingual machine translation service developed by Google, to translate text from one language into another. It offers a website interface, mobile apps for Android and iOS, and an API that helps developers build browser extensions and software applications. Google Translate supports over 100 languages at various levels.

Follow the steps to add a google translate button on your website:

Step 1: Start with a basic web page and add a div element.
In the code below a div element with the id google_translate_element is created.

Where is the Google Translate button?

Step 2: Add google translate api reference.

Where is the Google Translate button?

Step 3: Add Javascript function..

Where is the Google Translate button?

Example:




<!DOCTYPE html>
<html lang="en-US">
<head>
<title>
How To Add Google Translate
Button On Your Webpage ?
</title>
</head>
<body>
<p>Hello everyone!</p>
<p>Welcome to GeeksforGeeks</p>
<p>
Translate this page in
your preferred language:
</p>
<div id="google_translate_element"></div>
<script type="text/javascript">
function googleTranslateElementInit() {
new google.translate.TranslateElement(
{pageLanguage: 'en'},
'google_translate_element'
);
}
</script>
<script type="text/javascript" src=
"https://translate.google.com/translate_a/element.js?
cb=googleTranslateElementInit">
</script>
<p>
You can translate the content of this
page by selecting a language in the
select box.
</p>
</body>
</html>

Output:

Where is the Google Translate button?

Output after translating into Arabic:
Where is the Google Translate button?

Where is the Google Translate button?




Article Tags :
JavaScript
Technical Scripter
Web Technologies
JavaScript-Misc