Informations complémentaires

Poids 195 g
Pages

108

Format

A5

Bulletin 38 – Colloque 2002 – Francis Jammes Prosateur – 2ème partie (Décembre 2003)

9,15 

jQuery(document).ready(function($) { // Masquer le champ "montant libre" au chargement $('#montant-libre').hide(); // Écouter les changements sur le champ "Type de cotisation" $('select[name="type-cotisation"]').change(function() { if ($(this).val() === "Montant libre (minimum 50€)") { $('#montant-libre').show(); } else { $('#montant-libre').hide(); $('input[name="montant-libre"]').val(''); } }); });