In my code, I have a form with radio buttons. The first radio button is displayed but the second (Repeat Every Week) is not? If I remove the comment markers then it all works fine. But why is it happening?
<!------------>
<%= radio_button_tag 'repeat_daily', 'freq' %>Repeat Every Day<br/>
<!------------>
...some code...
<!----------->
<%= radio_button_tag 'repeat_weekly', 'freq' %>Repeat Every Week<br/>
<!----------->