fglojnari
fglojnari

Reputation: 41

Google Translate font tag

When I start translating on my web page (right click -> Translate to English), and then click on submit button on my form, the text in the button is multiplied. I realised that google translate wraps text in my button in double font tags, and if I click on the button more than one time, the text will mulitply.

Here is code before translation:

<button type="button" class="btn btn-success-ox btn-block btn-spin"> 
  Update app details
</button>

After translatation and clicking on button 3 times:

<button type="button" class="btn btn-success-ox btn-block btn-spin">

  <font><font class="">
    Update app details
  </font></font>

  <font><font>
    Update app details
  </font></font>

  <font><font>
    Update app details
  </font></font>
</button>

I am interested if there is way to intercept a function that adds font tags, or somehow to not add font tags at all?

Upvotes: 4

Views: 3138

Answers (0)

Related Questions