Performance: Anchor tag basics
MEDIUM IMPACT
Anchor tags affect page load speed by triggering navigation and can impact interaction responsiveness when used improperly.
<a href="/target-page" aria-label="Go to target page">Click me</a>
<a href="#" onclick="doSomething(); return false;">Click me</a>
| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| Anchor with href="#" and inline JS | Minimal DOM nodes | 1 reflow on click | Low paint cost | [X] Bad |
| Anchor with valid href and no inline JS | Minimal DOM nodes | 0 reflows on click | Low paint cost | [OK] Good |