Reputation: 6858
I have a form, when my user tries to reload, I need to show the popup "If you reload the page you cannot use this form"
.
the page is reloaded using a button in browsers
How to prevent reload and show custom popup ?
Upvotes: 1
Views: 1954
Reputation: 20233
The browsers are designed to ask for confirmation with the native popup https://developer.mozilla.org/en-US/docs/Web/API/Window/beforeunload_event
And this cannot be customized (which would require async handling)
If the latter was possible people would get stuck on porn pages and would never have the chance to leave them.
Upvotes: 3