Exit Intent Trigger 🧪
Design Notes
Common Exit Intent Detection Methods
Mouse Movement to Top of Viewport (Most Common)
Detects when the user moves their cursor near the top of the browser window (towards the close tab button).
Ideal for desktop users.
Not effective on mobile.
Mouse Speed and Direction
Detects fast cursor movement toward the browser edges.
Useful for more aggressive detection.
Lost Focus on Window
Fires when the user switches tabs or minimizes the window.
Good for detecting intent but can fire too often in normal browsing.
Page Visibility API
Detects when the page goes into the background (
visibilitychange
event).Best for tracking when users switch tabs.
Back Button Navigation
Detects when users press the back button before leaving.
Works well for preventing abandonment.
Session Timeout
Detects when the user is inactive for a set time.
Useful for re-engaging users.
Last updated
Was this helpful?