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
Links that are built with anchor elements (<a>) are not accessible without an href value. The href value determines what page or content a user will be directed to once the link is activated. If the href value is left blank, then the link may appear to be broken to users and may also cause confusing screen reader announcements.
Instead of using <a> for these buttons, the best option here would be to use a <form> tag:
Hi, there are a couple of
<a>
tags withouthref
attributes in some of the templates. For example,ckan/ckan/templates/organization/snippets/info.html
Line 67 in 5117fba
As per https://accessibleweb.com/question-answer/link-element-still-accessible-without-href/
Instead of using
<a>
for these buttons, the best option here would be to use a<form>
tag:This ensures two things:
The text was updated successfully, but these errors were encountered: