I have this code that creates links.
DOM_a = document.createElement("a"); DOM_a.appendChild(document.createTextNode(t.headingText)); DOM_a.href = "javascript:void(null);"; DOM_a.title = t.headingText; DOM_a.onclick = this.navClick;
I need to add an image to the link, but when I try to add the image code:
<img src="typo3conf/ext/ori_proyectos/res/images/interes.png">
I get:
Link<img src="typo3conf/ext/ori_proyectos/res/images/interes.png">
And no: Link[*_*]
Where [*_*] is the image.
The source code displays this:
<img src="typo3conf/ext/ori_proyectos/res/images/interes.png">
I donβt know how to write it down.
Thanks.
Memochipan
source share