Subversion Repositories eFlore/Applications.eflore-consultation

Rev

Rev 591 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
178 delphine 1
<!-- DEBUT FORM_NIVEAU -->
192 delphine 2
<script type="text/javascript">
198 delphine 3
	$(document).ready(function() {
192 delphine 4
		$( "#radio" ).buttonset();
5
		$('#eflore_niveau_submit').hide();
6
		$(".zone-choix-niveau input").click(function() {
7
			$('#eflore_niveau_submit').click();
8
		});
9
	});
10
</script>
591 gduche 11
 
12
<div class="choixNiveau">
13
		<span class="choix-niveau">
14
				<a href="<?=$parametres['url']?>&niveau=1" class="niveau1<?=$parametres['niveau'] == 1? ' actif' : ''?>">Débutant</a>
178 delphine 15
			</span>
16
			<span class="choix-niveau">
591 gduche 17
				<a href="<?=$parametres['url']?>&niveau=2" class="niveau2<?=$parametres['niveau'] == 2? ' actif' : ''?>">Intermédiaire</a>
178 delphine 18
			</span>
19
			<span class="choix-niveau">
591 gduche 20
				<a href="<?=$parametres['url']?>&niveau=3" class="niveau3<?=$parametres['niveau'] == 3? ' actif' : ''?>">Expert</a>
178 delphine 21
			</span>
591 gduche 22
</div>
178 delphine 23
 
24
 
25
 
26
<!-- FIN FORM_NOM -->