<input type="checkbox" id="checkbox"><label for="checkbox">Test</label>
<style>
#checkbox {
display: none;
}
#checkbox:checked + label:before {
content: "* ";
}
#checkbox + label:before {
content: " ";
}
</style>
<div>
Это блок, который должен скрываться
<div class="hidder">X</div>
</div>
$(document).ready(function() {
$(".hidder").click(function() {
$(this).parrent().hide();
});
});
$(document).ready(function(){
$('body').on('click', '.close-me-button', function(){
$(this).hide();
});
});
<div class="close-me-button">Я блок, кликни по мне и я исчезну!</div>