Every radio button group should have at least 2 radio buttons.Responsive web design

What does it mean by every radio button should have atleast 2 radio buttons.

2 Likes

Hey there! Welcome to the forums!

A group of radio buttons are all the <input type="radio"> elements on a page with the same name attribute. So for example:

<input type="radio" name="group1">
<input type="radio" name="group1">
15 Likes

i didnt get it what is this step? plss help

2 Likes

It simply means that both radio buttons should have same “name” attribute.
Eg: <input type=“radio” name=“sameGroup”…>Button1
<input type=“radio” name=“sameGroup”…>Button2

8 Likes

mod edit: solution redacted

It is great that you solved the challenge, but instead of posting your full working solution, it is best to stay focused on answering the original poster’s question(s) and help guide them with hints and suggestions to solve their own issues with the challenge.

We are trying to cut back on the number of spoiler solutions found on the forum and instead focus on helping other campers with their questions and definitely not posting full working solutions.

1 Like

This topic is 8 months old.

If you have a question about a specific challenge as it relates to your written code for that challenge and need some help, click the Ask for Help button located on the challenge (it looks like a question mark). This button only appears if you have tried to submit an answer at least three times.

The Ask for Help button will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.

Thank you.