We are working with the gwt-java application. In one case i need to reload my browser window in my application, that's why i wanted to use 'Window.Location.reload()' which is not working consistently then i used force reloading of an application which is working in 'Chrome' but continuously reloading window in Firefox and IE(not working properly).
Chrome - Version 40.0.2214.45 beta-m (64-bit) Firefox - 24.0 IE - 11
forceReload():
private static native void forceReload() /*-{
$wnd.location.reload(true);
}-*/;
what is the best way to reload browser window?