I am using AJAX action after getting the response, I want to reload the current page, for which I am using:
window.location.reload();
It w
Try this:
window.opener.location.reload(true); window.self.close();
This works for me on all major browsers.