Capturing the browser tab reload and tab close functionality

584 Views Asked by At

I want to call an ajax to other pages on the browser or tab close. When we reload tab or close tab it calls onbeforeUnload and onUnload events.
If I reload page either by pressing ctrl+r or by pressing enter in address bar it should reload page without any prompt and if I click close of browser or tab or I press ctrl+w keys it should prompt that "Changes you made might be lost" and if user click leave it should close tab and call an ajax, else it should stay on page.
Can anyone help me with this?
Thanks in advance

1

There are 1 best solutions below

2
On

Most of the browsers intentionally block popups triggered in onbeforeunload, for known reasons.

But if you want to preserve users' data from erasing, you can engage window.localstorage property.