Salut à tous,
J'ai un problème avec le code ci-dessous qui permet d'afficher une image plus grande en popup avec un texte. Mais sous iexplorer ça ne fonctionne pas du tout, alors qu'avec Firefox c'est impeccable.
Je pense que cela provient de mon code, mais je ne connais pas grand chose, hélas..
de l'aide please.
Merci
<SCRIPT LANGUAGE="JavaScript">
<!--
function PopupImage(img,legende) {
w=open("",'image','width=400,height=400,toolbar=no,scrollbars=no,resizable=no');
w.document.write("<HTML><HEAD>"+legende+"</HEAD>" );
w.document.write("<SCRIPT language=javascript>function checksize() { if (document.images[0].complete) { window.resizeTo(document.images[0].width+300,document.images[0].height+300); window.focus();} else { setTimeout('checksize()',250) } }</"+"SCRIPT>" );
w.document.write("<BODY onload='checksize()' onblur='window.close()' onclick='window.close()' leftMargin=10 topMargin=10 marginwidth=10 marginheight=10>" );
w.document.write("<TABLE width='100%' border='0' cellspacing='0' cellpadding='0' height='100%'><TR>" );
w.document.write("<TD valign='middle' align='center'><IMG src='"+img+"' border=0 title='cliquez pour fermer'>" );
w.document.write("</TD></TR></TABLE>" );
w.document.write(<BODY>document.forms[0].elements[name].value</BODY> )
w.document.write("</BODY></HTML>" );
w.document.close();
}
//-->
</SCRIPT>