Need help with problem 49, the program wont accept vaule code. What am i doing wrong?
Step 49
Step 49 from web response
If you select the Indoor
radio button and submit the form, the form data for the button is based on its name
and value
attributes. Since your radio buttons do not have a value
attribute, the form data will include indoor-outdoor=on
, which is not useful when you have multiple buttons.
Add a value
attribute to both radio buttons. For convenience, set the button’s value
attribute to the same value as its id
attribute.
Example
<label><input id="indoor" type="radio" name="indoor-outdoor" vaule="indoor"> Indoor</label>
<label><input id="outdoor" type="radio" name="indoor-outdoor" vaule="outdoor"> Outdoor</label>