/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ $(document).ready(function() { boulange_signup() ; }); function boulange_signup() { if($('#form-signup').size()) { boulange_signup_champs_boulanger() ; $('#signupform-is_boulanger').change(function() { boulange_signup_champs_boulanger() ; }) ; } } function boulange_signup_champs_boulanger() { if($('#signupform-is_boulanger').prop('checked')) { $('#champs-boulanger').fadeIn() ; } else { $('#champs-boulanger').hide() ; } }