aria-describedby
<input>
Back to index page
Error: At least one option must be chosen
<fieldset> <legend>Choose a fruit</legend> <ul class="form-list"> <li> <input type="radio" id="apple" name="fruit" aria-describedby="d4"> <label class="form-label" for="apple">Apple</label> </li> <li> <input type="radio" id="pear" name="fruit" aria-describedby="d4"> <label class="form-label" for="pear">Pear</label> </li> <li> <input type="radio" id="bannana" name="fruit" aria-describedby="d4"> <label class="form-label" for="bannana">Banana</label> </li> </ul> <p class="error" id="d4">Error: At least one option must be chosen</p> </fieldset>