Forum Moderators: open
function anyCheck(form) {
var total = 0;
var max = form.ckbox.length;
for (var idx = 0; idx < max; idx++) {
if (document.playlist.ckbox[idx].checked == true) {
total += 1;
}
}
alert("You selected " + total + " boxes.");
}