He has recently faced with a similar problem.
Here's my not too elegant solution for JQuery, suddenly someone come in handy.
\r
DeleteGoogleIframe function() { // Check if the page frame Google. // If there are other frames, the record will have to change. if($("iframe").length) { // Wait until the frame you see $("iframe").load(function() { // Hide bar Google via 250ms (timeout was selected experimentally) // Without using a timeout to remove the panel I failed. setTimeout(function() { // hide the panel $("iframe").hide(); }, 250); }); } }
\r
Call function
DeleteGoogleIframe need to add in code posted on the page:
\r
\r\rfunction googleTranslateElementInit() {\rnew google.translate.TranslateElement({\rpageLanguage: 'ru',\rincludedLanguages: 'en,ru'\r}, 'google_translate_element');\rDeleteGoogleIframe();\r}\r\r\r
\r
In addition, it is necessary to track the event language selection:
\r
$('.goog-te-combo').live('change', DeleteGoogleIframe);