I have several radio buttons on my site with the following tags.
Then I have and input field with the following tag.HTML Code:<INPUT TYPE="radio" NAME="index_Radio" VALUE="Radio A" SELECTED> <INPUT TYPE="radio" NAME="index_Radio" VALUE="Radio B"> <INPUT TYPE="radio" NAME="index_Radio" VALUE="Radio C">
What do i need to do to have the First Name label and the text box disabled when I click on Radio A. And have it enabled when i click on B or C. Keep in mind that when the page loads A is selected already. So it needs to load disabled.HTML Code:<div id="first_name"> First Name: </div> <INPUT TYPE="text" NAME="first_name" SIZE="20" MAXLENGTH="10" ONCHANGE="this.value = this.value.toUpperCase()">
Thanks for you help




Reply With Quote