Start scanning free

( Operable / WCAG 2.2.4 )

Page uses meta refresh with a time limit

This check maps to Interruptions. Use the guidance below to confirm the issue, understand who it affects and ship a fix.

Moderate Level AAA WCAG 2.2.4 — Interruptions

What’s wrong

A <meta http-equiv="refresh"> tag redirects or reloads the page after a fixed delay, with no way for the user to stop it.

Why it matters

Someone who reads slowly, or is still filling out a form, can lose their place or their input entirely when the page reloads out from under them without warning.

How to fix it

Redirect immediately with a 0 delay, or replace the timed refresh with a link and a server-side redirect the user controls.

Before
<meta http-equiv="refresh" content="10;url=/dashboard">
After
<p>Your session has ended. <a href="/dashboard">Continue to dashboard</a></p>

Learn more