lu,
j'ai un pb sur un java script...
j'ai d'abord commencé à l'utiliser dans une frame et tout fonctionnait parfaitement... maintenant, je refais tout avec des tableaux en utilisant le même code pour le changement d'image et ça ne fait plus rien du tout ! pas même une erreur java script !
voilà, le code, dites moi ce que vous en pensez !
<html>
<!-- Date de création: 16/02/02 -->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title></title>
<meta name="description" content="">
<meta name="keywords" content="">
<meta name="author" content="varman7">
<link type="text/css" rel="stylesheet" href="ilitch.css"/>
</head>
<SCRIPT LANGUAGE="Javascript">
// chargement des images:
images= new Array();
for(var g=1;g<7;g++)
{
images[g]=new Image();
images[g].src = "img"+g+"menu.gif";
}
function modif_img(idx)
{
document.img.src = images[idx].src;
}
</SCRIPT>
<body>
<table cellpadding="0" cellspacing="0" width="100%">
<!-- tableau principal, tiens toute la page -->
<tr>
<td colspan="3"><!-- correspond à la banière du haut-->
<center>
<img name="img" border="0" src="ilitch.jpg" align="top">
</center>
</td>
</tr>
<tr>
<!-- contenu de la page -->
<td>
<!-- le menu de gauche -->
<table width="25%" height="100%" align="right" border="0" cellspacing="0">
<tr>
<td></td>
<td width="50%" height="75%" align="right" valign="bottom" bgcolor="#AD0000">
<table>
<tr ALIGN="right"><TD> <A onMouseOver="document.img.src='img1menu.jpg'; modif_img(1);" href="concept.html" target="content">concept</A></td></tr>
<tr ALIGN="right"><TD> <A onMouseOver="document.img.src='img2menu.jpg'; modif_img(2);" href="concept.html" target="content">les news fresh</A></td></tr>
<tr ALIGN="right"><TD> <A onMouseOver="document.img.src='img3menu.jpg'; modif_img(3);" href="concept.html" target="content">la team</A></td></tr>
<tr ALIGN="right"><TD> <A onMouseOver="document.img.src='img4menu.jpg'; modif_img(4);" href="concept.html" target="content">la collection</A></td></tr>
<tr ALIGN="right"><TD> <A onMouseOver="document.img.src='img5menu.jpg'; modif_img(5);" href="concept.html" target="content">gallerie photo</A></td></tr>
<tr ALIGN="right"><TD> <A onMouseOver="document.img.src='img6menu.jpg'; modif_img(6);" href="concept.html" target="content">nous contacter</A></td></tr>
</table>
</td>
</tr>
<tr >
<td align="right" colspan="2" >
<img name="img" border="2" src="img6menu.jpg">
</td>
</tr>
<tr valign="top">
<td>
</td>
<td bgcolor="#AD0000" height="25">
</td>
</tr>
</table>
<td width="75%">
</td>
<td width="10%">
</td>
</tr>
</table>
</body>
</html>
dans la première version, je n'utilisais pas la fonction changeimg et ça marchait bien...ici, sans cette fonction, ça marche po, avec non plus... il se passe queud ! d'où viens le pb, svp ?