I am trying to set up one of my pages so that if the user clicks on a radio button, a text box dissappears. If the user clicks on another radio button, that same text box reappears.
Can anyone help me with my problem?
Here is what I am trying:
function terms(formObj){
with (formObj){
if (elements[87].checked == true){
elements[88].visibility = "show";
}
else{
elements[88].visibility = "hide";
}
}
}
Can anyone help me with my problem?
Here is what I am trying:
function terms(formObj){
with (formObj){
if (elements[87].checked == true){
elements[88].visibility = "show";
}
else{
elements[88].visibility = "hide";
}
}
}