I need js function that show alert window on reload or when closing tab asking me if I'm sure that want to reload or close tab. If not, Stay in page without loosing content.
Asked
Active
Viewed 2,855 times
-3
-
2Wait let me google "show alert window on reload or when closing tab " – Popnoodles Jun 17 '14 at 18:49
-
Look at the answer below... – Moonhead Jun 17 '14 at 18:49
-
http://stackoverflow.com/questions/7080269/javascript-before-leaving-the-page – Erick Souza Jun 17 '14 at 18:50
1 Answers
2
The browser feature that you want is called the onbeforeunload event.
window.onbeforeunload = function(e) {
return 'Are you sure you want to leave? You are in the middle of something.';
};
When the data has been saved, you can clear the event like this:
window.onbeforeunload = null;

Jeremy J Starcher
- 23,369
- 6
- 54
- 74