Bonjour
J'ai ce script :
	
	1 2 3 4 5 6 7 8
   | <script type="text/javascript">
<!--
function S_Zoom(id1,id2){
		showLayer(id1);
		hideLayer(id2);		
}
//-->
</script> | 
 un bouton : 
	
	<a href="javascript:S_Zoom('zoom1','btVerifParametrage');"><img src="images/verifier-parametrage_blanc.gif" width="195" height="15" border="0">
 et 2 div :
	
	1 2
   | <div id="btVerifParametrage" style="padding:12px 0 12px 160px;"><a href="javascript:S_Zoom('zoom1','btVerifParametrage');"><img src="images/verifier-parametrage_blanc.gif" width="195" height="15" border="0"></a></div>
<div id="zoom1" style="display:none;padding:12px 0 12px 160px;top:389px; left:19px;text-align:center;">Un message vous a été envoyé</div> | 
 Le principe :
quand on clique sur le bouton ça cache le DIV "btVerifParametrage" et affiche le DIV "zoom1"
Mais je n'y arrive pas
Merci d'avance pour votre aide
Philippe
						
					
Partager