WebmasterID logoWebmasterID
Event tracking

Dead click detection

A dead click is a UX-signal event where a user clicks an element and nothing observable happens — no navigation, no DOM change, no network call. Experience tooling derives it by watching for the absence of a reaction after a click within a short window. Like rage clicks it is not a native GA4 event; you compute it and send it as a custom event. It flags elements that look interactive but are inert.

Partially verified

How it is derived

The detection rule is: a click occurred, and within a short window there was no observable change — no URL change, no mutation to the DOM near the target, no triggered request. The window length and what counts as 'a reaction' are tool conventions. Because there is no standard dead_click event, you implement the rule and emit a custom event when it matches.

Dead click vs rage click

A dead click is a single inert click; a rage click is repeated clicks driven by frustration. They often co-occur — a dead control gets clicked again and again — but the signals answer different questions. Dead clicks tell you which elements are inert; rage clicks tell you which ones frustrate users enough to repeat. Use both to separate 'looks clickable but isn't' from 'fails repeatedly under pressure'.

How it appears in analytics and logs

A dead click means the affordance is misleading: the element invites a click but has no handler or effect. It is a design issue, not necessarily a script error.

Diagnostic use case

Find controls that users click but that do nothing, by detecting clicks with no following DOM, URL, or network change, then make them responsive or non-clickable-looking.

What WebmasterID can help detect

WebmasterID can store a labelled dead-click signal (selector plus 'no reaction') as a custom event without capturing replays of real visitors.

Common mistakes

Privacy and accuracy notes

Detection needs only the clicked selector and whether a reaction followed — not user identity or typed content. Keep the signal non-identifying.

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.