---
title: How to detect when user leaves the page and display a confirmation dialog?
description: Learn how to use React and Next.js to show an alert asking the user to confirm they want to exit a page using the window beforeunload event listener.
url: /kb/guide/leave-page-confirmation-dialog-before-unload-nextjs-react
canonical_url: "https://vercel.com/kb/guide/leave-page-confirmation-dialog-before-unload-nextjs-react"
last_updated: 2025-11-10
authors: Lee Robinson
related: []
install_vercel_plugin: npx plugins add vercel/vercel-plugin
---

When handling a data mutation on your page, it can be beneficial to prevent the user from leaving or closing the page until the action has fully completed.

This guide will show an example of this pattern using React and Next.js.

## Confirm navigation away with event listener

The browser provides an event listener you can use to handle the user attempting to close the window or tab called [`beforeunload`](https://developer.mozilla.org/en-US/docs/Web/API/Window/beforeunload_event). We can add a global event listener for this event and use our React state to derive whether it should ask for confirmation or not.

`// This could be useState, useOptimistic, or other state let pending = false; useEffect(() => { if (!pending) return; function beforeUnload(e: BeforeUnloadEvent) { e.preventDefault(); } window.addEventListener('beforeunload', beforeUnload); return () => { window.removeEventListener('beforeunload', beforeUnload); }; }, [pending]);`