Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 418 Bytes

link-href-attributes.md

File metadata and controls

16 lines (11 loc) · 418 Bytes

link-href-attributes

It's common to treat anchor tags as buttons. However, this is typically considered bad practice, as an anchor tag without an href is unfocusable which breaks accessibility.

This rule forbids the following:

<a>I'm a fake link</a>
<a {{action 'handleClick'}}>I'm a fake link</a>

This rule allows the following:

<a href="https://alink.com">I'm a real link</a>