Aman Gandhi

Aman Gandhi

  • NA
  • 10
  • 10.5k

Onbeforeunload not working in chrome

Oct 7 2017 12:34 AM
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)