var box = $(".videoIds");
box.click(function () {
var ischeck = false;
setTimeout(function(){
box.each(function() {
if ($(this).prop("checked")) {
ischeck = true ;
return;
}
});
if (ischeck){
$(".testCheckbox").show();
} else {
$(".testCheckbox").hide();
}
})
box.click(function () {
var ischeck = false;
setTimeout(function(){
box.each(function() {
if ($(this).prop("checked")) {
ischeck = true ;
return;
}
});
if (ischeck){
$(".testCheckbox").show();
} else {
$(".testCheckbox").hide();
}
})
});