11
Jul
Learn how to reload page using jquery/ javascript
There are few ways to reload the page using javascript.
window.location.reload();
history.go(0);
window.location.href=window.location.href; // will do nothing if your URL has a #/hashbang on the end learnhow2do.com/test#blah
window.location = window.location.pathname; //Some of the browsers like Firefox opens ConfirmBox for resend.If you reload after post request.