Radio Buttons not functioning? HTML

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • patelxxx
    New Member
    • May 2007
    • 135

    Radio Buttons not functioning? HTML

    For some reason I can' t get the radio button to work, for some reason I am unable to select the radio buttons at all. Please see my code below:

    [HTML]<form>
    1) Do you browse through railway timetables, directories, or dictionaries just for pleasure?
    <input type="radio" name"question" value="True">Tr ue
    <input type="radio" name"question" value="False">F alse<br>
    </form>[/HTML]

    I am using IE 6.

    cheers
  • just a feeling
    New Member
    • Aug 2007
    • 86

    #2
    This works,

    [HTML]<form name="signup" method="post" action="">
    1) Do you browse through railway timetables, directories, or dictionaries just for pleasure?
    <input type="radio" name="question" value="True" />
    True
    <input type="radio" name="question" value="False" />
    False<br>
    </form>[/HTML]

    BTW, ur code is working correctly on FF and Opera.

    Comment

    • patelxxx
      New Member
      • May 2007
      • 135

      #3
      Thank you for that it works now.

      Comment

      Working...