Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumHTMLvalidation attrs required patternSingle-choice MCQ

You have three radio buttons sharing `name="plan"`, and you add the `required` attribute to only ONE of them. What is the effect on form submission?

<input type="radio" name="plan" value="free" required> <input type="radio" name="plan" value="pro"> <input type="radio" name="plan" value="team">