• Success Criterion 2.4.3
  • Conformance level A
  • W3C reference F44

Tab Order That Jumps Around the Page Illogically

2.4.3 — Focus Order

Scenario

Setting

A news outlet's article page

What’s wrong

tabindex (keyboard-focus setting) values force a tab order that jumps around illogically, so keyboard users move through the page in a confusing sequence.

Example

A QA pass on a news outlet's article page turns this up: tabindex (keyboard-focus setting) values force a tab order that jumps around illogically, so keyboard users move through the page in a confusing sequence.

Why it matters

Keyboard and screen-reader users who follow focus rather than the pointer. On a news outlet's article page, that means they lose track of where they are on the page.

How to test

Inspect the DOM for positive tabindex values (tabindex="1", "2", etc.): these override natural order and often create an illogical sequence — check by tabbing through.

How to fix

Remove positive tabindex (keyboard-focus setting) values and let the DOM order define a logical tab sequence.

Outcome

With the fix in place on a news outlet's article page, they keep track of where they are on the page.

Who is affected

Keyboard and screen-reader users who follow focus rather than the pointer.

Learn more