How to disable google translate original text tooltips

前端 未结 5 431
南旧
南旧 2021-02-01 22:14

I have used google translate as a language converter in my site but it displays annoying tool tips called \'Original text\'. How do I disable this and any other better ideas/too

5条回答
  •  灰色年华
    2021-02-01 22:31

    I think my method is better ^^

        $(document).ready(function() 
        {       
            translationTooltipsDisable();
        });
    
    
        function translationTooltipsDisable()
        {       
            //Override google's functions
            _tipon = function()  { /*Don't display the tooltip*/ };
            _tipoff = function() { /*Don't hide the tooltip*/ };
        }
    

提交回复
热议问题