
=)
Dans la frame en haut à droite, j'ai mon menu, je voudrais que quand je clic sur un bouton (css), il m'affiche sur ma frame de gauche mon "sous menu" et au centre ma page de texte
2 en 1 comment ça se passe?

Code : Tout sélectionner
<a href="javascript:
window.parent.nomDeLaFrameGauche.location = 'nouveauMenu.html';
window.parent.nomDeLaFramePrincipale.location = 'nouvellePagePrincipale.html';">
ton lien
</a>Code : Tout sélectionner
<frameset rows="*" cols="28%,*" frameborder="NO" border="0" framespacing="0">
<frame src="menu_gauche.htm" name="leftFrame" scrolling="NO" noresize>
<frameset rows="71,*" cols="*" framespacing="0" frameborder="NO" border="0">
<frame src="frame_cocci.htm" name="topFrame" scrolling="NO" noresize>
<frame src="actu_bio.php" name="milieu">
</frameset>
</frameset>Code : Tout sélectionner
<div align="center">
<ul class="menu">
<li><a href="
window.parent.leftFrame.location = 'gauche.htm';
window.parent.milieu.location = 'calendrier_index.htm';">
Le Bio</a></li>
<li><a href="biofinesse.htm">L'entreprise</a></li>
<li><a href="nos_produits.php">Produits</a></li>
<li><a href="partenaires.php">Liens</a></li>
</ul>
</div>Code : Tout sélectionner
<script type="text/javascript"> </script>
Code : Tout sélectionner
<a href="javascript:void(0)" onClick="
window.parent.leftFrame.location = 'gauche.htm';
window.parent.milieu.location = 'calendrier_index.htm';">