Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save takahirohonda/f428165e870c4cd97ff0d033f36a5b72 to your computer and use it in GitHub Desktop.
Save takahirohonda/f428165e870c4cd97ff0d033f36a5b72 to your computer and use it in GitHub Desktop.
accessibility-form-tips-4-aria-required.html
<!-- aria-checked is not required -->
<input type="radio"
class="radio-input"
id="adelaide"
name="venue"
value="adelaide"
aria-checked="false" />
<!-- remove aria-checked -->
<input type="radio"
class="radio-input"
id="adelaide"
name="venue"
value="adelaide" />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment