alert(document.forms[0].name);
Responds with RadioColor.
alert(document.RadioColor.name);
Responds with undefined as does
alert(document.forms['RadioColor'].name);
The form name is indeed RadioColor.
I've run out of things to try.
Suggestions, please.
- ianO -