groups

name language licence
JS/JQUERY : Script pour gestion onglet en Jquery Other Other
JS/JQUERY : infobulle en js+JQuery Other Other
MAIL : requete ping par mail Other Other
MAIL/HTML : remarques Other Other
PHP : Boucle ecriture dans un fichier XML PHP Other
PHP : Detection ie6 et ie7 en php PHP Other
PHP : class mail PHP Other
PHP : date en php Other Other

< 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 >



language: Other
licence: Other

JS/JQUERY : Script pour gestion onglet en Jquery

options: view full snippetsend to code collector
//*** le code html
<div class="onglets">
	<div onclick="onglet(1, this);"> <a href="#1">TEXTE</a> </div>
	<div onclick="onglet(2, this);"> <a href="#2">TEXTE</a> </div>
	<div onclick="onglet(3, this);"> <a href="#3">TEXTE</a> </div>
	<div onclick="onglet(4, this);"> <a href="#4">TEXTE</a> </div>
	<div onclick="onglet(5, this);"> <a href="#5">TEXTE</a> </div>
</div>
					
					
<div class="textes" >
					
	<div id="1">
	
		Texte de cette onglet
	
(Continues...)