Comment masquer et afficher le bouton avec plusieurs cases à cocher dans Rails
$(".hide-button").hide();
$('input[type="checkbox"]').click(function() {
if($('input[type="checkbox"]').is(":checked")) {
$(".hide-button").show();
} else {
$(".hide-button").hide();
}
});
#Give hide-button class to the button.
Haris Bilal Novatoresols