javascript - Specify HTML DOM nodes for Google page translation (opposite of class=notranslate) -
i know can tell google translate not translate sections using class="notranslate"
, can tell google translate specific sections , not rest?
if not, alternatives?
use attribute translate=""
, , specify on body. inside, specify nodes translate. example:
<body translate="no"> <p translate="yes">will translated</p> <p>will not translated</p> </body>
Comments
Post a Comment