Another way is shown oin the third post of my thread:
An array of arrays of of radio buttons
I gave all three checkboxes the same name. Then it was simple to do:
for(i=1;i<=3;i++) {
tmp1 = document.form1.status[i].checked;
alert(tmp1);
if(tmp1){
..........................
}
else{
..........................
};
};
It seems to be the only way to do it with radio buttons.
Last edited by MidiMagic; May 10th, 2007 at 3:49 am.
Reputation Points: 730
Solved Threads: 181
Nearly a Senior Poster
Offline 3,314 posts
since Jan 2007