Я хочу иметь возможность скрыть весь контейнер, когда я отмечаю флажок.
* HTML *
<div class="showIt">
<div>abc</div>
<div>123</div>
<div><input type="checkbox" /></div>
</div>
* CSS *
div.showIt {
display:inherit;
}
div.hideIt {
display:none;
}
* JavaScript (не работает) *
<script>
jQuery.support.cors = true; // needed for ajax to work in certain older browsers and versions
$(document).ready(function(){
$(this).change(function(e) {
$(this).parent().toggleClass('showIt hideIt');
$(this).closest("div").toggleClass('showIt hideIt');
});
}); // end .ready()
</script>