jQuery(document).ready(function($){ /* Afficher formulaire cliqué */ $('.button__choice').click (function() { console.log('bouton cliquer'); let buttonName = $(this).attr('name'); $('.form_choice .gform_wrapper').each(function(){ if ( $(this).hasClass(buttonName + '_wrapper') ){ $('.gform_wrapper').removeClass('form__select'); $(this).addClass('form__select'); } }); }); });