Here’s a solution:
<script>
window.onload = function(){
var anchors = document.getElementById('link_other').getElementsByTagName('a');
for (var i=0; i<anchors.length; i++){
anchors[i].setAttribute('target', '_blank');
}
}
</script>
EXAMPLE:
<div id="link_other">
[hover-image-row]
[hover-image-button title="Example title" subtitle="example subtitle" link="https://www.example.com" image="http://example-image.com"]
[/hover-image-row]
</div>
-
This reply was modified 9 years ago by maciej007.