DigitalBoy
Programmer
I have a form (ratingsForm) that contains a group of radio buttons (ratingsGroup) of which I want to store the value of in a variable. I assume that the following syntax is correct:
var ratingsValue = document.ratingsForm.ratingsGroup.value;
However, whenever I try and run this, I always get the following from the javascript debugger window (in NS):
document.ratingsForm has no properties.
Um ... anyone have any suggestions?
- DB
dgtlby@excite.com
Administrator
UBB Developers Network
var ratingsValue = document.ratingsForm.ratingsGroup.value;
However, whenever I try and run this, I always get the following from the javascript debugger window (in NS):
document.ratingsForm has no properties.
Um ... anyone have any suggestions?
- DB
dgtlby@excite.com
Administrator
UBB Developers Network