Reputation: 2446
Is there a way in javascript to show a confirmation alert and give the user an opportunity to cancel before closing browser/tab in mobile safari? Since onbeforeunload is not supported I'm wondering if there's another way to interrupt the process?
Upvotes: 5
Views: 1084
Reputation: 42449
Have you looked at Apple's Documentation?
document.unload
should work but is deprecated. document.pagehide
is recommended.
Upvotes: 1