How can I reload the page using JavaScript?
I need a method that works in all browsers.
location.reload();
See this MDN page for more information.
If you are refreshing after an onclick then you'll need to return false directly after
onclick
location.reload(); return false;