SyntaxFix
Write A Post
Hire A Developer
Questions
The question should be,
How to refresh a page with JavaScript
window.location.href = window.location.href; //This is a possibility window.location.reload(); //Another possiblity history.go(0); //And another
You're spoiled for choice.