![javascript](https://habrastorage.org/r/w120/webt/59/cc/76/59cc7600c78a2239379574.jpeg)
JavaScript
2
Вклад в тег
$(document).ready(function(){
$('a.show-checked').on('click', function(e) {
e.preventDefault()
$('input:not(:checked)').parents('li').hide();
$('input:checked').parents('li').show();
});
$('a.show-active').on('click', function(e) {
e.preventDefault()
$('input:not(:checked)').parents('li').show();
$('input:checked').parents('li').hide();
});
})