Код: Выделить всё
$(document).ready(function () {
$('#check-video-d').click(function () {
$('.check-video').prop('checked', false);
});
$('.check-video').change(function () {
var check = ($('.check-video').filter(":checked").length == $('.check-video').length);
$('#check-video-d').prop("checked", check);
});
});
Код: Выделить всё
1
2
No ALL
Подробнее здесь: https://stackoverflow.com/questions/787 ... the-others