We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I quickly checked https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Roles/Combobox_Role and I think the following aria attributes can be easily added:
<div data-controller="autocomplete" data-autocomplete-url-value="/birds/search" role="combobox"> <input type="text" data-autocomplete-target="input" aria-autocomplete="list" aria-controls="bird-id-results" /> <input type="hidden" name="bird_id" data-autocomplete-target="hidden"/> <ul class="list-group" data-autocomplete-target="results" id="bird-id-results"></ul> </div>
aria-autocomplete="list"
aria-controls="bird-id-results"
<ul>
id="bird-id-results"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I quickly checked https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Roles/Combobox_Role and I think the following aria attributes can be easily added:
aria-autocomplete="list"
to the input fieldaria-controls="bird-id-results"
(id of the<ul>
) to the input fieldid="bird-id-results"
to the<ul>
.The text was updated successfully, but these errors were encountered: