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
Not sure why, but in my case i fixed it by wrapping the reload() call in a setTimeout with 100 ms.
setTimeout(function(){ window.location.reload(); },100);