You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
361 B
10 lines
361 B
document.addEventListener("DOMContentLoaded", function () {
|
|
const selectAll = document.getElementById("select-all");
|
|
const prospectCheckboxes = document.getElementsByName("selected_prospects");
|
|
|
|
selectAll.addEventListener("change", function () {
|
|
prospectCheckboxes.forEach((checkbox) => {
|
|
checkbox.checked = selectAll.checked;
|
|
});
|
|
});
|
|
});
|
|
|