Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to put a google translate box twice in the page, one in a pop up and one in a sliding button. I do not want to redirect user to translator page, i want them to remain on site and see the translated page there. I want to see the dropdown for langnuages on pop up and also on side button. The problem is i am not able to see the drop down and a bar for translation appears on top of browser. The code is given below.

<div align="center">
<div id="google_translate_element3" ></div><script>
                function googleTranslateElementInit3() {
                  new google.translate.TranslateElement({
                    pageLanguage: 'zh-CN',
                    includedLanguages: 'zh-CN,en,zh-TW,id'
                  }, 'google_translate_element3');
                }
                </script>
            <script src="http://translate.google.com/translate_a/element.js?cb=googleTranslateElementInit3">
    </script>
    </div>

    <a id="popupBoxClose">Close</a> 
    </div>


       <div class="floatinglikebox">
    <span>
        <div style="margin:0 25px 3px">

         <div id="google_translate_element2" ></div><script>
            function googleTranslateElementInit2() {
              new google.translate.TranslateElement({
                pageLanguage: 'zh-CN',
                includedLanguages: 'zh-CN,en,zh-TW,id'
              }, 'google_translate_element2');
            }
            </script>
           <script src="http://translate.google.com/translate_a/element.js?cb=googleTranslateElementInit2">                    

             </script>
        </div>
    </span>
        </div>

Check it live here

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.