Masquer : préfixer toutes les règles CSS avec :root • Compenser avec JS : ajouter ou retirer une classe au click sur les labels $('label').click(function(e){ // Fix change event not firing on inputs in IE var input = $('#' + $(this).attr('for')); var state = input.prop('checked'); input.prop('checked', !state); $(this).focus(); input.change(); input.focus(); e.preventDefault(); });