Javascript how to confirm browser to close in Safari on iOS

Is there a way in javascript to show a warning and give the user the option to cancel before closing the browser / tab in mobile safari? Since onbeforeunload is not supported, I'm wondering if there is another way to terminate the process?

+3


source to share


1 answer


Have you looked at Apple's documentation?

https://developer.apple.com/library/IOS/documentation/AppleApplications/Reference/SafariWebContent/HandlingEvents/HandlingEvents.html#//apple_ref/doc/uid/TP40006511-SW5



document.unload

should work but is deprecated. document.pagehide

...

+1


source







All Articles