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 the below:
window.location = self.location;
above code does not work for some browsers, you can even try:
location.reload( true );