How can I reload the page using JavaScript?
I need a method that works in all browsers.
This works for me:
function refresh() { setTimeout(function () { location.reload() }, 100); }
http://jsfiddle.net/umerqureshi/znruyzop/