View Single Post
Old 05-14-2004, 08:44 PM   PM User | #1
Tom Armstrong
New to the CF scene

 
Join Date: May 2004
Location: Worcester, MA
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
Tom Armstrong is an unknown quantity at this point
Script doesn't see form control

One problem I'm having is that The script in this HTML doesn't see the control called "gender" and always read's its value as "undefined". A previous posting which is gone now had some good advice.

The other problem is that I had a thread started here and I'm not sure if I put it in the wrong forum or what but it's gone. So PLEASE, if this posting violates a rule let me know, I'm new at this!



<HTML>
<BODY>

<FORM>

<INPUT TYPE="TEXT" NAME="actualValue" SIZE=40> should be "M" or "F" </INPUT><BR><P>

<INPUT TYPE="radio" NAME="gender" value="M" checked>Male<BR>
<INPUT TYPE="radio" NAME="gender" value="W">Female<BR><BR>

<INPUT TYPE="button" NAME="myButt" value = "Click to see radio button value" onClick=myFunction()></INPUT>

</BODY>
</FORM>

<SCRIPT>


function myFunction()
{
document.forms[0].actualValue.value = document.forms[0].gender.value;

// should be "M" or "F" but it's "undefined"
}

</SCRIPT>
</HTML>
Tom Armstrong is offline   Reply With Quote