38 lines
954 B
PHTML
38 lines
954 B
PHTML
<div id="center">
|
|
|
|
<h1 class="titre"></h1>
|
|
|
|
<div class="paragraph">
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<script>
|
|
$(document).ready(function(){
|
|
$('#listeModulesD').click(function(){
|
|
var position = $(this).position();
|
|
$('#listeModules').css('top', position.top);
|
|
$('#listeModules').css('left', position.left-200);
|
|
var display = $('#listeModules').css('display');
|
|
if(display=='none') $('#listeModules').css('display', 'block');
|
|
else $('#listeModules').css('display', 'none');
|
|
});
|
|
|
|
$('#closelisteModules').click(function(){
|
|
$('#listeModules').css('display', 'none');
|
|
$('#modules > #selected').html('');
|
|
$('input[name="module[]"]').each(function(){
|
|
if ($(this).prop('checked')){
|
|
$('#modules > #selected').append('<br/>'+$(this).parent().text());
|
|
}
|
|
});
|
|
});
|
|
|
|
$('#addIdentifiant').click(function(){
|
|
$('form[name=rFibenM] > #identifiant').append('<br/><label>Identifiant</label> <input type="text" name="identifiant[]" />');
|
|
});
|
|
});
|
|
</script>
|