mirror of
https://github.com/yogeshojha/rengine.git
synced 2026-09-18 07:47:42 +02:00
40 lines
1.2 KiB
JavaScript
40 lines
1.2 KiB
JavaScript
function checkedCount() {
|
|
// this function will count the number of boxes checked
|
|
item = document.getElementsByClassName("subdomain_checkbox");
|
|
count = 0;
|
|
for (var i = 0; i < item.length; i++) {
|
|
if (item[i].checked) {
|
|
count++;
|
|
}
|
|
}
|
|
return count;
|
|
}
|
|
|
|
function mainCheckBoxSelected(checkbox) {
|
|
if (checkbox.checked) {
|
|
$("[data-button=subdomain_btns]").removeClass("disabled");
|
|
$(".subdomain_checkbox").prop('checked', true);
|
|
$('#subdomain_selected_count').text(checkedCount() + ' Subdomains Selected x');
|
|
} else {
|
|
uncheckSubdomains();
|
|
}
|
|
}
|
|
|
|
function toggleMultipleSubdomainButton() {
|
|
var checked_count = checkedCount();
|
|
if (checked_count > 0) {
|
|
$("[data-button=subdomain_btns]").removeClass("disabled");
|
|
$('#subdomain_selected_count').text(checked_count + ' Subdomains Selected x');
|
|
} else {
|
|
$("[data-button=subdomain_btns]").addClass("disabled");
|
|
$('#subdomain_selected_count').empty();
|
|
}
|
|
}
|
|
|
|
function uncheckSubdomains(){
|
|
$("[data-button=subdomain_btns]").addClass("disabled");
|
|
$(".subdomain_checkbox").prop('checked', false);
|
|
$("#head_checkbox").prop('checked', false);
|
|
$('#subdomain_selected_count').empty();
|
|
}
|