Hint and prevent the user from going to the page

How does StackOverflow do this when you add a question or answer a question;

I would like to request from the user:

"Are you sure you want to navigate away from this page" "Press OK to continue or Cancel to stay on this page" 

I tried a couple of js fragments that I found on the Internet, but nothing cuts the mustard.

+4
source share
1 answer

You need to implement window.onbeforeunload and return your message from it as a string:

 window.onbeforeunload = function() { if (theUserHasStartedEditing) { return "You have started writing or editing a post." } } 

Here's an online demo: http://www.4guysfromrolla.com/demos/OnBeforeUnloadDemo2.htm

+7
source

Source: https://habr.com/ru/post/1306946/


All Articles