I am sure this is an easy syntax thing, but I can't seem to get it. This works fine:
function checkAll() {
for(var i=0; i<document.frm.chk1.length; i++) {
document.frm.chk1[i].checked=true;
}
}
However, I have sevaral check box control arrays (chk1, chk2, chk3, etc.), and want to...