Hello,

Sorry for my english,
I have a problem with a taconite script, he doesn't work in internet
explorer but works well in Firefox.

the taconite code :

- <taconite>
- <replaceContent select="#zoom">
  <img src="photos/photo350.jpg" height="200px" width="360px" />
- <p>
  Nettoyant pour revĂȘtement avec tampon applicateur 90ml
  <span>3.5</span>
  </p>
  </replaceContent>
  </taconite>

the javascript code :
$('#nouveau a').hover(function(){
      var t1=$("#nouveau a").html() ;
      $.get("zoom_photo.php?mail="+t1);
      $('#zoom').show();

},function(){$('#zoom').hide();
})
$('#promotion a').hover(function(){
      var t1=$("#promotion a").html() ;
      $.get("zoom_photo.php?mail="+t1);
      $('#zoom').show();

the css code :
#zoom{
position:absolute;
top:350px;
left:375px;
height:260px;
width:380px;
background-color: white;
border: 1px ridge #fea305;
z-index:100;
display:none;
}
#zoom img{
height:200px;
width:360px;
padding:10px;
}
#zoom p{
padding-left:10px;
color:black;
font-size:10px;
font-weight:bold;
}
#zoom span{
font-size:24px;
font-weight:bold;
color:yellow;
padding-left:5px;
}

Could you help me tio find my error please ?
Thanks

J-Marc


Reply via email to