My website is based on a platform and I can change a little bit of the layout, but certain parts render code automatically. My problem? It is in English and I need it in Spanish. I can add javascript before the body of the website but I can't change the html directly so I was thinking I could use onload to change the text. What do you guys think? I can use jQuery, too, if that helps.
I need to change this:
<div class="c_wrapper">
<h3 class="d_customize_title" align="left">
<span id="left_title">
Playera Max
</span>
<a onclick="d.showProductInfo(); return false;" href="#">
Product details
</a>
</h3>
</div>
to this:
<div class="c_wrapper">
<h3 class="d_customize_title" align="left">
<span id="left_title">
Playera Max
</span>
<a onclick="d.showProductInfo(); return false;" href="#">
Detalles del producto
</a>
</h3>
</div>