Hey everyone,
Just a quick post on how to force a page refresh with JavaScript (no jQuery required):
location.reload();
Note that the reload function accepts a boolean parameter that can be used for force a server refresh. Alternatively, it just defaults to the cache.
Checkout this Stackoverflow post for more info: http://stackoverflow.com/a/5404869/522859
Leave a Reply