I want to overwrite some text defined by class=cc-product-infolink and it is defined by the CMS, so i have to change the text in this class via JS. It is my first time to use it, so i have wrote a little script, but it doesn't work. Why?
I would like to change the text "inkl. MwSt, zzgl. Versandkosten " in "inkl. MwSt, Versandkosten gemäß Angaben". And the JS-Code must be work in the head
, because there is no possibility to put it into the body
.
Here is my HTML Code:
<div class="cc-product-infolink">
<a class="cc-no-clickable-arrow" href="/j/shop/info/m/me6f40c3b0bd58b35" rel="nofollow">inkl. MwSt, zzgl. Versandkosten</a>
</div>
My JS-Code
<script type="text/javascript">
//<![CDATA[
var versand = document.getElementsByClassName('cc-product-infolink')[0];
versand.getElementsByTagName('a')[0].textContent += ' gemäß Angaben';
//]]>
</script>
and it should work here: http://www.wonnemond.de/taschen/karl/#cc-m-product-8254989095 Maybe somebody can help me.
Some notes:
id
andclass
are not the same. As the name implies,getElementById
retrieves elements by theirid
attribute. Your element only hasclass
, sogetElementsByClassName
is what you need. I guess you cannot change the HTML.textContent
is used to set/get the text content of a DOM element. Old IEs (IE8 and older) useinnerText
instead.firstChild
does not work because the link is not the first child of that div. There is a text node containing a newline and some indentation before the link. UsinggetElementsByTagName
you can solve this problem though.And a jsFiddle Demo.