Jump to content

images fenetre modale ne s'affichent pas


Recommended Posts

Bonjour,

 

J'ai dupliqué un code pour faire une fenêtre pop-up modale que j'ai voulu installer dans product.tpl pour que cette fenêtre soit à coté du prix de mon produit. Tout s’installe bien, sauf les images.

 

J'ai mal placé le code ?

le code est faux ?

il manque du code ?

 

je suis sous prestashop 6.1

 

Merci d'avance.

 

<a href=".../.../img/logo-landes.jpg" height="150px" width="150px" class="twpop"><img src=".../.../.../.../img/point-d-interrogation.jpg" height="15px" width="15px" alt="Image" class="img-sensible"></a>

<script>
function twPopConstructeur(){
    var anchors = document.getElementsByTagName("a");
    for (var i=0; i<anchors.length; i++){
        var anchor = anchors;
        var relAttribute = String(anchor.getAttribute("class"));
        if (anchor.getAttribute("href") && (relAttribute.toLowerCase().match("twpop"))){
            var oParent = anchor.parentNode;
            var oImage=document.createElement("img");
            oImage.src = anchor.getAttribute("href");
            oImage.alt = anchor.getAttribute("title")
             
            var oLien=document.createElement("a");
            oLien.href = "#ferme";
            oLien.title = anchor.getAttribute("title");
            oLien.onclick = "return false;";
            oLien.appendChild(oImage);
             
            var sNumero = "id"+i;
             
            var node=document.createElement("div");
            node.id = sNumero;
            node.className = "twAudessus";
            node.appendChild(oLien);
            anchor.setAttribute("href","#"+sNumero);
      oParent.appendChild(node);
        }
    }
}
</script>             
<script>document.onLoad = twPopConstructeur();</script>

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...