You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The use of an <a> tag without an href attribute does not allow for a user to focus on the expandable item in the list.
Suggestion:
Use a different element, preferably a <button> tag. This allows for a user to focus on the element and hit the enter key to open and close the submenu.
Alternative:
Use a hash as the href value. Allows for focus, but the native hash change event will need to be captured and ignored.
The text was updated successfully, but these errors were encountered:
The use of an
<a>
tag without an href attribute does not allow for a user to focus on the expandable item in the list.Suggestion:
Use a different element, preferably a
<button>
tag. This allows for a user to focus on the element and hit the enter key to open and close the submenu.Alternative:
Use a hash as the
href
value. Allows for focus, but the native hash change event will need to be captured and ignored.The text was updated successfully, but these errors were encountered: