📝How to: disable <a> link
- tags
- source
disabled
attribute is not supported on a
element.
To disable a link, remove href
, set role
to link
(for screen readers to recognize the link), set aria-disabled
to true
.
<a role="link" aria-disabled="true">...</a>