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 to reload page using JavaScript.
window.location.href = window.location.href;