The document does not use <meta http-equiv="refresh">

The page does not use automatic refresh or redirect tags.

On this page

Impact

ScanGov impact ratings

About

Users do not expect a page to refresh automatically, and doing so will move focus back to the top of the page. This may create a frustrating or confusing experience.

Risks

Automatic page refresh disrupts keyboard and screen reader users.

Why it's important

Follows established patterns that prevent common usability barriers for people with disabilities.

User stories

As a user with a disability, I want the site to follow accessibility best practices so that I can use it without encountering barriers.

Code

Failing pattern:

<!-- Fail: delayed auto-redirect disrupts users -->
<meta http-equiv="refresh" content="10; url=https://example.gov/new-page">

Passing pattern:

<!-- Pass: instant redirect (0 seconds) is acceptable for permanent moves -->
<meta http-equiv="refresh" content="0; url=https://example.gov/new-page">

Error

ScanGov messaging when a site fails a standard:

Failed: The document does not use <meta http-equiv="refresh">

Guidance

Indicators

On this page