imagine having 4 radio in the same document how could i make it whaen i click on radio all others state become unchecked i tried div but its not working cuase these radios r inside different <tr>
Printable View
imagine having 4 radio in the same document how could i make it whaen i click on radio all others state become unchecked i tried div but its not working cuase these radios r inside different <tr>
are they enclosed in <form></form> tags?
no they r'n t is that the problem trying to see them through the document obj but can't
document.radioname=undifined
Place form tags around them. They should also have the same name.
As Psyrus said...
That shld be the problem....Quote:
They should also have the same name
U gotta have the radio buttons, all with the same name. That groups them together.
Ex:
<input type=radio name=Group1>One
<input type=radio name=Group1>Two
<input type=radio name=Group1>Three
<input type=radio name=Group1>Four
-Jemima
Yes, same name, but different values.