Forum Moderators: open
var ckbx_arr=document.getElementsByName('check_box_name');
You can then loop the array testing the "checked" property, something like:
var ckbx_arr_ln=ckbx_arr.length;
for(var i=0;i<ckbx_arr_ln;i++){
if(ckbx_arr[i].checked)return true;
}
return false;
Generally it is preferred that you keep your follow-up qestions and comments in the thread, so others can gain from them, as well.