1
Reply

Onbeforeunload not working in chrome

Aman Gandhi

Aman Gandhi

Oct 7 2017 12:34 AM
846
following piece of code is working fine in IE but not working in Chorme. I am trying to reload the parent window after close of popup window.
 
window.onbeforeunload = function (e) {
self.close();
window.opener.location.reload();
};
 
From server side same code working fine but i want to refresh parent page if user close page from browse close button.

Answers (1)