Archive for March, 2007

Redirect to a different URL in GWT

Tuesday, March 13th, 2007

Here is a simple JSNI function to call from your GWT app to redirect to a different URL.

//redirect the browser to the given url
public static native void redirect(String url)/*-{
      $wnd.location = url;
  }-*/;

An example call

redirect("http://www.emgarten.com/");