WebmasterID logoWebmasterID
Analytics metrics

Time to Interactive (TTI)

Time to Interactive (TTI) measures how long it takes a page to become reliably interactive — visually rendered, with event handlers registered, and responding to input quickly. The definition looks back from a five-second quiet window (no long tasks, limited network requests) to the last long task before it. TTI is a lab metric from Lighthouse; web.dev now steers teams toward TBT and the field metric INP, since TTI is sensitive to single long tasks.

Verified against primary sources

What this means

TTI is the point after which a page can be trusted to respond to user input promptly. It requires the page to have displayed content (past FCP), registered handlers for most visible elements, and to respond within 50ms of interactions.

The quiet-window rule

Lighthouse finds TTI by locating a five-second window with no long tasks and at most two in-flight network requests, then walking back to the end of the last long task before that window. That makes TTI deterministic in the lab but fragile: one stray long task can push it out dramatically.

Why it misleads

Because a single long task moves TTI sharply, it is noisy and hard to act on directly. web.dev recommends optimising Total Blocking Time, which is more actionable, and validating responsiveness with field INP. Treat TTI as context, not a target in itself.

How it appears in analytics and logs

A late TTI means the page rendered before it could respond — heavy JavaScript kept the main thread busy past the visible paint, so taps in that gap would feel ignored.

Diagnostic use case

Use TTI in lab audits to estimate when a page stops looking interactive while actually being janky, but prefer TBT and field INP for diagnosing and confirming responsiveness.

What WebmasterID can help detect

WebmasterID classifies traffic first-party; TTI is a lab figure you can pair with field interaction timing observed against human-classified sessions.

Common mistakes

Privacy and accuracy notes

TTI is a load-timing measurement, not an identifier. This material is educational, not legal advice.

Related pages

Sources and verification notes

Last reviewed 2026-06-24. Facts are checked against primary/official sources where available; uncertain specifics are marked “Data not yet verified” rather than guessed.