I have a form that updates on an AJAX call.
After the Ajax call succeeded, I want to reload the same page to reflect the new changes.
I used location.reload() and window.location.href after calling AJAX, the correct RELOAD is executed in the browser, but the form shows the old data, not the new one.
If I reload the page using the browser reload button, new updated data is displayed.
But how to properly load a page using jQuery?
javascript jquery ajax
Umair
source share