i’m using Innova Content Builder to record my webpage. It’s contains a module called saveimage.php which transforms binary images to jpg files. This works perfectly.
Now, i would like to encapsulate these img whith href links, but it doesn’t works.
Here is my code :
JavaScript
x
6
1
parent.document.getElementById('img-" . $count . "').setAttribute('src','" . $urlpath . $image . "');
2
parent.document.getElementById('img-" . $count . "').setAttribute('alt','".$image."');
3
var myLink = document.createElement('a');
4
myLink.setAttribute('href','http://www.google.fr');
5
parent.document.getElementById('img-" . $count . "').appendChild(myLink);
6
This code is placed into a body onload function. I think it’s a parentality problem.
Can you help me ? Thanks !
Advertisement
Answer
Use this:
JavaScript
1
9
1
<script>
2
parent.document.getElementById('img-" . $count . "').setAttribute('src','" . $urlpath . $image . "');
3
parent.document.getElementById('img-" . $count . "').setAttribute('alt','".$image."');
4
var myLink = document.createElement('a');
5
myLink.setAttribute('href','http://www.google.fr');
6
parent.document.getElementById('img-" . $count . "').parentNode.insertBefore(myLink, parent.document.getElementById('img-" . $count . "'));
7
myLink.appendChild(parent.document.getElementById('img-" . $count . "'));
8
</script>
9